[PATCH] ARM: OMAP: Check gpio_fck not gpio_ick
Check gpio_fck not gpio_ick. Signed-off-by: Komal Shah <komal_shah802003@yahoo.com> Signed-off-by: Tony Lindgren <tony@atomide.com>
This commit is contained in:
parent
709eb3e5cc
commit
1630b52ddf
|
@ -1006,7 +1006,7 @@ static int __init _omap_gpio_init(void)
|
||||||
else
|
else
|
||||||
clk_enable(gpio_ick);
|
clk_enable(gpio_ick);
|
||||||
gpio_fck = clk_get(NULL, "gpios_fck");
|
gpio_fck = clk_get(NULL, "gpios_fck");
|
||||||
if (IS_ERR(gpio_ick))
|
if (IS_ERR(gpio_fck))
|
||||||
printk("Could not get gpios_fck\n");
|
printk("Could not get gpios_fck\n");
|
||||||
else
|
else
|
||||||
clk_enable(gpio_fck);
|
clk_enable(gpio_fck);
|
||||||
|
|
Loading…
Reference in New Issue