aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/gpio_keys.h
diff options
context:
space:
mode:
authorAlexander Stein <alexander.stein@informatik.tu-chemnitz.de>2011-04-12 02:34:48 -0400
committerDmitry Torokhov <dmitry.torokhov@gmail.com>2011-04-12 02:53:19 -0400
commit467112777c462a592c27338eeea5d1a320e82b5f (patch)
treeb2ee72c67ecdc46ebb62edb042aa22af434a7350 /include/linux/gpio_keys.h
parent92a47674f57b4a84a43ce93b0dfdb596c0543749 (diff)
Input: gpio-keys - add support for setting device name
This patch allows to set a device name which helps distinguishing several gpio-keys devices. Signed-off-by: Alexander Stein <alexander.stein@informatik.tu-chemnitz.de> Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Diffstat (limited to 'include/linux/gpio_keys.h')
-rw-r--r--include/linux/gpio_keys.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/gpio_keys.h b/include/linux/gpio_keys.h
index 3204edfe6b19..b5ca4b2c08ec 100644
--- a/include/linux/gpio_keys.h
+++ b/include/linux/gpio_keys.h
@@ -22,6 +22,7 @@ struct gpio_keys_platform_data {
22 unsigned int rep:1; /* enable input subsystem auto repeat */ 22 unsigned int rep:1; /* enable input subsystem auto repeat */
23 int (*enable)(struct device *dev); 23 int (*enable)(struct device *dev);
24 void (*disable)(struct device *dev); 24 void (*disable)(struct device *dev);
25 const char *name; /* input device name */
25}; 26};
26 27
27#endif 28#endif