Skip to content

Commit

Permalink
[PATCH] ARM: OMAP: Check gpio_fck not gpio_ick
Browse files Browse the repository at this point in the history
Check gpio_fck not gpio_ick.

Signed-off-by: Komal Shah <komal_shah802003@yahoo.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
  • Loading branch information
Komal Shah authored and Tony Lindgren committed Sep 25, 2006
1 parent 709eb3e commit 1630b52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/arm/plat-omap/gpio.c
Original file line number Diff line number Diff line change
Expand Up @@ -1006,7 +1006,7 @@ static int __init _omap_gpio_init(void)
else
clk_enable(gpio_ick);
gpio_fck = clk_get(NULL, "gpios_fck");
if (IS_ERR(gpio_ick))
if (IS_ERR(gpio_fck))
printk("Could not get gpios_fck\n");
else
clk_enable(gpio_fck);
Expand Down

0 comments on commit 1630b52

Please sign in to comment.