diff options
author | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2012-04-10 09:03:03 -0700 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2012-04-10 09:05:27 -0700 |
commit | 55158c886a0c43765140673d2343d3119d34a25a (patch) | |
tree | 165a86e662f36c4ca98e89487e93ce5e35d04af9 /drivers/input | |
parent | fb16395ee65d22882a0af30850cbf5c9b9a2962c (diff) | |
download | talos-obmc-linux-55158c886a0c43765140673d2343d3119d34a25a.tar.gz talos-obmc-linux-55158c886a0c43765140673d2343d3119d34a25a.zip |
Input: gpio_mouse - use linux/gpio.h rather than asm/gpio.h
Direct usage of the asm include has long been deprecated by the
introduction of gpiolib.
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Diffstat (limited to 'drivers/input')
-rw-r--r-- | drivers/input/mouse/gpio_mouse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/input/mouse/gpio_mouse.c b/drivers/input/mouse/gpio_mouse.c index a9ad8e1402be..39fe9b737cae 100644 --- a/drivers/input/mouse/gpio_mouse.c +++ b/drivers/input/mouse/gpio_mouse.c @@ -12,9 +12,9 @@ #include <linux/module.h> #include <linux/platform_device.h> #include <linux/input-polldev.h> +#include <linux/gpio.h> #include <linux/gpio_mouse.h> -#include <asm/gpio.h> /* * Timer function which is run every scan_ms ms when the device is opened. |