Commit 72cb168c authored by Komal Shah's avatar Komal Shah Committed by Tony Lindgren

[PATCH] ARM: OMAP: Check gpio_fck not gpio_ick

Check gpio_fck not gpio_ick.
Signed-off-by: default avatarKomal Shah <komal_shah802003@yahoo.com>
Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
parent 7be486f9
...@@ -544,4 +544,6 @@ EXPORT_SYMBOL(dsp_register_mem_cb); ...@@ -544,4 +544,6 @@ EXPORT_SYMBOL(dsp_register_mem_cb);
EXPORT_SYMBOL(dsp_unregister_mem_cb); EXPORT_SYMBOL(dsp_unregister_mem_cb);
EXPORT_SYMBOL(__cpu_flush_kern_tlb_range); EXPORT_SYMBOL(__cpu_flush_kern_tlb_range);
EXPORT_SYMBOL(cpu_architecture);
EXPORT_SYMBOL(pmd_clear_bad);
#endif #endif
...@@ -985,7 +985,7 @@ static int __init _omap_gpio_init(void) ...@@ -985,7 +985,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);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment