Skip to content

Commit d3a52bc

Browse files
Wolfram Sanggeertu
authored andcommitted
clk: renesas: rcar-gen3: Remove outdated SD_SKIP_FIRST
We handle it differently meanwhile. Signed-off-by: Wolfram Sang <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Geert Uytterhoeven <[email protected]>
1 parent bb6d3fa commit d3a52bc

File tree

1 file changed

+3
-12
lines changed

1 file changed

+3
-12
lines changed

drivers/clk/renesas/rcar-gen3-cpg.c

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -312,29 +312,20 @@ static u32 cpg_quirks __initdata;
312312

313313
#define PLL_ERRATA BIT(0) /* Missing PLL0/2/4 post-divider */
314314
#define RCKCR_CKSEL BIT(1) /* Manual RCLK parent selection */
315-
#define SD_SKIP_FIRST BIT(2) /* Skip first clock in SD table */
316315

317316

318317
static const struct soc_device_attribute cpg_quirks_match[] __initconst = {
319318
{
320319
.soc_id = "r8a7795", .revision = "ES1.0",
321-
.data = (void *)(PLL_ERRATA | RCKCR_CKSEL | SD_SKIP_FIRST),
320+
.data = (void *)(PLL_ERRATA | RCKCR_CKSEL),
322321
},
323322
{
324323
.soc_id = "r8a7795", .revision = "ES1.*",
325-
.data = (void *)(RCKCR_CKSEL | SD_SKIP_FIRST),
326-
},
327-
{
328-
.soc_id = "r8a7795", .revision = "ES2.0",
329-
.data = (void *)SD_SKIP_FIRST,
324+
.data = (void *)(RCKCR_CKSEL),
330325
},
331326
{
332327
.soc_id = "r8a7796", .revision = "ES1.0",
333-
.data = (void *)(RCKCR_CKSEL | SD_SKIP_FIRST),
334-
},
335-
{
336-
.soc_id = "r8a7796", .revision = "ES1.1",
337-
.data = (void *)SD_SKIP_FIRST,
328+
.data = (void *)(RCKCR_CKSEL),
338329
},
339330
{ /* sentinel */ }
340331
};

0 commit comments

Comments
 (0)