mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
clk: stm32f4: fix error handling
This is likely that checking 'clks[idx]' instead of 'clks[n]' is expected here. Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr> Signed-off-by: Michael Turquette <mturquette@baylibre.com> Link: lkml.kernel.org/r/1467526003-13318-1-git-send-email-christophe.jaillet@wanadoo.fr
This commit is contained in:
parent
b24faef9a3
commit
334e125b4e
1 changed files with 1 additions and 1 deletions
|
@ -364,7 +364,7 @@ static void __init stm32f4_rcc_init(struct device_node *np)
|
||||||
NULL, gd->name, gd->parent_name, gd->flags,
|
NULL, gd->name, gd->parent_name, gd->flags,
|
||||||
base + gd->offset, gd->bit_idx, 0, &stm32f4_clk_lock);
|
base + gd->offset, gd->bit_idx, 0, &stm32f4_clk_lock);
|
||||||
|
|
||||||
if (IS_ERR(clks[n])) {
|
if (IS_ERR(clks[idx])) {
|
||||||
pr_err("%s: Unable to register leaf clock %s\n",
|
pr_err("%s: Unable to register leaf clock %s\n",
|
||||||
np->full_name, gd->name);
|
np->full_name, gd->name);
|
||||||
goto fail;
|
goto fail;
|
||||||
|
|
Loading…
Add table
Reference in a new issue