Skip to content

Commit 464982b

Browse files
committed
clk: at91: remove the checking of parent_name
There is no need to check parent_name variable while assigning it to init.parent_names. parent_name variable is already checked at the beginning of at91_clk_register_peripheral() function. Fixes: 6114067 ("clk: at91: add PMC peripheral clocks") Signed-off-by: Claudiu Beznea <claudiu.beznea@microchip.com> Reviewed-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Link: https://lore.kernel.org/r/1598338751-20607-2-git-send-email-claudiu.beznea@microchip.com Signed-off-by: Stephen Boyd <sboyd@kernel.org>
1 parent 9c94dae commit 464982b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

drivers/clk/at91/clk-peripheral.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,8 +111,8 @@ at91_clk_register_peripheral(struct regmap *regmap, const char *name,
111111

112112
init.name = name;
113113
init.ops = &peripheral_ops;
114-
init.parent_names = (parent_name ? &parent_name : NULL);
115-
init.num_parents = (parent_name ? 1 : 0);
114+
init.parent_names = &parent_name;
115+
init.num_parents = 1;
116116
init.flags = 0;
117117

118118
periph->id = id;

0 commit comments

Comments
 (0)