]> pilppa.com Git - linux-2.6-omap-h63xx.git/commitdiff
ARM: OMAP: Fix cpu_is_omap1610() tests in gpio.c
authorTony Lindgren <tony@atomide.com>
Thu, 18 Aug 2005 08:40:14 +0000 (01:40 -0700)
committerTony Lindgren <tony@atomide.com>
Thu, 18 Aug 2005 08:40:14 +0000 (01:40 -0700)
Fix cpu_is_omap1610() tests in gpio.c. This was suggested by
Kyungmin Park. Also recent 24xx patch added two more
cpu_is_omap1610() tests.

arch/arm/plat-omap/gpio.c

index e554ea72b2ed71e780c36d3729c2d8d616ad4d80..c4fb50ed5edd2bd3a7ecd61a53b4594e1f55a2f8 100644 (file)
@@ -998,7 +998,7 @@ static int __init _omap_gpio_init(void)
 
        /* Enable system clock for GPIO module.
         * The CAM_CLK_CTRL *is* really the right place. */
-       if (cpu_is_omap1610() || cpu_is_omap1710())
+       if (cpu_is_omap16xx())
                omap_writel(omap_readl(ULPD_CAM_CLK_CTRL) | 0x04, ULPD_CAM_CLK_CTRL);
 
        return 0;
@@ -1009,7 +1009,7 @@ static int omap_gpio_suspend(struct sys_device *dev, pm_message_t mesg)
 {
        int i;
 
-       if (!cpu_is_omap24xx() && !cpu_is_omap1610())
+       if (!cpu_is_omap24xx() && !cpu_is_omap16xx())
                return 0;
 
        for (i = 0; i < gpio_bank_count; i++) {
@@ -1047,7 +1047,7 @@ static int omap_gpio_resume(struct sys_device *dev)
 {
        int i;
 
-       if (!cpu_is_omap24xx() && !cpu_is_omap1610())
+       if (!cpu_is_omap24xx() && !cpu_is_omap16xx())
                return 0;
 
        for (i = 0; i < gpio_bank_count; i++) {