]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
ARM: iop32x: read N2100 power key using gpiolib
authorLinus Walleij <linus.walleij@linaro.org>
Mon, 9 Sep 2013 12:53:02 +0000 (14:53 +0200)
committerLinus Walleij <linus.walleij@linaro.org>
Fri, 20 Sep 2013 21:04:13 +0000 (23:04 +0200)
Refrain from using the custom gpio_line_get() to read the power
key on the N2100, use the gpiolib function gpio_get() instead.
Also request the line in the GPIOs initicall, and move the poll
timer setup to that inicall so the gpio chip is available before
we request this GPIO and start to poll it.

Cc: Lennert Buytenhek <kernel@wantstofly.org>
Cc: Dan Williams <dan.j.williams@intel.com>
Cc: Mikael Pettersson <mikpe@it.uu.se>
Tested-by: Aaro Koskinen <aaro.koskinen@iki.fi>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
arch/arm/mach-iop32x/n2100.c

index 6bace5bc7ebb11b7ee82a38464a3f2bf35d1ec36..bc40a97050a13ebc409b786b19fcbfe24e7ac3f1 100644 (file)
@@ -306,7 +306,7 @@ static struct timer_list power_button_poll_timer;
 
 static void power_button_poll(unsigned long dummy)
 {
-       if (gpio_line_get(N2100_POWER_BUTTON) == 0) {
+       if (gpio_get_value(N2100_POWER_BUTTON) == 0) {
                ctrl_alt_del();
                return;
        }
@@ -325,6 +325,20 @@ static int __init n2100_request_gpios(void)
        ret = gpio_request(N2100_HARDWARE_RESET, "reset");
        if (ret)
                pr_err("could not request reset GPIO\n");
+
+       ret = gpio_request(N2100_POWER_BUTTON, "power");
+       if (ret)
+               pr_err("could not request power GPIO\n");
+       else {
+               ret = gpio_direction_input(N2100_POWER_BUTTON);
+               if (ret)
+                       pr_err("could not set power GPIO as input\n");
+       }
+       /* Set up power button poll timer */
+       init_timer(&power_button_poll_timer);
+       power_button_poll_timer.function = power_button_poll;
+       power_button_poll_timer.expires = jiffies + (HZ / 10);
+       add_timer(&power_button_poll_timer);
        return 0;
 }
 device_initcall(n2100_request_gpios);
@@ -341,11 +355,6 @@ static void __init n2100_init_machine(void)
                ARRAY_SIZE(n2100_i2c_devices));
 
        pm_power_off = n2100_power_off;
-
-       init_timer(&power_button_poll_timer);
-       power_button_poll_timer.function = power_button_poll;
-       power_button_poll_timer.expires = jiffies + (HZ / 10);
-       add_timer(&power_button_poll_timer);
 }
 
 MACHINE_START(N2100, "Thecus N2100")