forked from luck/tmp_suning_uos_patched
clk: lpc32xx: do not register clock "0"
The following errors are display in the console during the power-on: [ 0.000000] lpc32xx_usb_clk_init: failed to register (null) clock: -12 [ 0.000000] lpc32xx_clk_init: failed to register (null) clock: -12 There is no need to register clock "0"; the first clock used is 1; Signed-off-by: Sylvain Lemieux <slemieux@tycoint.com> Acked-by: Vladimir Zapolskiy <vz@mleia.com> [sboyd@codeaurora.org: s/prepare/register/] Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
This commit is contained in:
parent
2430a94d1e
commit
4db9a9ba60
|
@ -1515,7 +1515,7 @@ static void __init lpc32xx_clk_init(struct device_node *np)
|
|||
return;
|
||||
}
|
||||
|
||||
for (i = 0; i < LPC32XX_CLK_MAX; i++) {
|
||||
for (i = 1; i < LPC32XX_CLK_MAX; i++) {
|
||||
clk[i] = lpc32xx_clk_register(i);
|
||||
if (IS_ERR(clk[i])) {
|
||||
pr_err("failed to register %s clock: %ld\n",
|
||||
|
@ -1555,7 +1555,7 @@ static void __init lpc32xx_usb_clk_init(struct device_node *np)
|
|||
return;
|
||||
}
|
||||
|
||||
for (i = 0; i < LPC32XX_USB_CLK_MAX; i++) {
|
||||
for (i = 1; i < LPC32XX_USB_CLK_MAX; i++) {
|
||||
usb_clk[i] = lpc32xx_clk_register(i + LPC32XX_CLK_USB_OFFSET);
|
||||
if (IS_ERR(usb_clk[i])) {
|
||||
pr_err("failed to register %s clock: %ld\n",
|
||||
|
|
Loading…
Reference in New Issue
Block a user