@@ -232,7 +232,7 @@ static void __init at91sam9x5_pmc_setup(struct device_node *np,
if (IS_ERR(usbck_hw))
goto err_free;
- smdck_hw = at91sam9x5_clk_register_smd(regmap, "smdclk", NULL, parent_hws, 2);
+ smdck_hw = at91sam9x5_clk_register_smd(regmap, "smdclk", parent_hws, 2);
if (IS_ERR(smdck_hw))
goto err_free;
@@ -111,7 +111,7 @@ static const struct clk_ops at91sam9x5_smd_ops = {
struct clk_hw * __init
at91sam9x5_clk_register_smd(struct regmap *regmap, const char *name,
- const char **parent_names, struct clk_hw **parent_hws,
+ struct clk_hw **parent_hws,
u8 num_parents)
{
struct at91sam9x5_clk_smd *smd;
@@ -125,10 +125,7 @@ at91sam9x5_clk_register_smd(struct regmap *regmap, const char *name,
init.name = name;
init.ops = &at91sam9x5_smd_ops;
- if (parent_hws)
- init.parent_hws = (const struct clk_hw **)parent_hws;
- else
- init.parent_names = parent_names;
+ init.parent_hws = (const struct clk_hw **)parent_hws;
init.num_parents = num_parents;
init.flags = CLK_SET_RATE_GATE | CLK_SET_PARENT_GATE;
@@ -964,7 +964,7 @@ static void __init of_at91sam9x5_clk_smd_setup(struct device_node *np)
if (IS_ERR(regmap))
return;
- hw = at91sam9x5_clk_register_smd(regmap, name, NULL, parent_hws,
+ hw = at91sam9x5_clk_register_smd(regmap, name, parent_hws,
num_parents);
if (IS_ERR(hw))
return;
@@ -237,7 +237,7 @@ at91_clk_register_sam9260_slow(struct regmap *regmap,
struct clk_hw * __init
at91sam9x5_clk_register_smd(struct regmap *regmap, const char *name,
- const char **parent_names, struct clk_hw **parent_hws,
+ struct clk_hw **parent_hws,
u8 num_parents);
struct clk_hw * __init
@@ -211,7 +211,7 @@ static void __init sama5d3_pmc_setup(struct device_node *np)
if (IS_ERR(usbck_hw))
goto err_free;
- smdck_hw = at91sam9x5_clk_register_smd(regmap, "smdclk", NULL, parent_hws, 2);
+ smdck_hw = at91sam9x5_clk_register_smd(regmap, "smdclk", parent_hws, 2);
if (IS_ERR(smdck_hw))
goto err_free;
@@ -234,7 +234,7 @@ static void __init sama5d4_pmc_setup(struct device_node *np)
parent_hws[0] = sama5d4_pmc->chws[PMC_PLLACK];
parent_hws[1] = sama5d4_pmc->chws[PMC_UTMI];
- smdck_hw = at91sam9x5_clk_register_smd(regmap, "smdclk", NULL, parent_hws, 2);
+ smdck_hw = at91sam9x5_clk_register_smd(regmap, "smdclk", parent_hws, 2);
if (IS_ERR(smdck_hw))
goto err_free;
Remove parent_names support as parent_hw support is now available on all platforms using clk-smd driver. Signed-off-by: Claudiu Beznea <claudiu.beznea@tuxon.dev> --- drivers/clk/at91/at91sam9x5.c | 2 +- drivers/clk/at91/clk-smd.c | 7 ++----- drivers/clk/at91/dt-compat.c | 2 +- drivers/clk/at91/pmc.h | 2 +- drivers/clk/at91/sama5d3.c | 2 +- drivers/clk/at91/sama5d4.c | 2 +- 6 files changed, 7 insertions(+), 10 deletions(-)