aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/input
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/input')
-rw-r--r--drivers/input/Kconfig2
-rw-r--r--drivers/input/mouse/gpio_mouse.c2
-rw-r--r--drivers/input/touchscreen/ads7846.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/drivers/input/Kconfig b/drivers/input/Kconfig
index 5f9d860925a1..cd50c00ab20f 100644
--- a/drivers/input/Kconfig
+++ b/drivers/input/Kconfig
@@ -143,7 +143,7 @@ config INPUT_APMPOWER
143 ---help--- 143 ---help---
144 Say Y here if you want suspend key events to trigger a user 144 Say Y here if you want suspend key events to trigger a user
145 requested suspend through APM. This is useful on embedded 145 requested suspend through APM. This is useful on embedded
146 systems where such behviour is desired without userspace 146 systems where such behaviour is desired without userspace
147 interaction. If unsure, say N. 147 interaction. If unsure, say N.
148 148
149 To compile this driver as a module, choose M here: the 149 To compile this driver as a module, choose M here: the
diff --git a/drivers/input/mouse/gpio_mouse.c b/drivers/input/mouse/gpio_mouse.c
index 0db8d16c5edd..5e5eb88d8d1e 100644
--- a/drivers/input/mouse/gpio_mouse.c
+++ b/drivers/input/mouse/gpio_mouse.c
@@ -18,7 +18,7 @@
18 18
19/* 19/*
20 * Timer function which is run every scan_ms ms when the device is opened. 20 * Timer function which is run every scan_ms ms when the device is opened.
21 * The dev input varaible is set to the the input_dev pointer. 21 * The dev input variable is set to the the input_dev pointer.
22 */ 22 */
23static void gpio_mouse_scan(struct input_polled_dev *dev) 23static void gpio_mouse_scan(struct input_polled_dev *dev)
24{ 24{
diff --git a/drivers/input/touchscreen/ads7846.c b/drivers/input/touchscreen/ads7846.c
index 7c27c8b9b6d0..056ac77e2cf0 100644
--- a/drivers/input/touchscreen/ads7846.c
+++ b/drivers/input/touchscreen/ads7846.c
@@ -295,7 +295,7 @@ name ## _show(struct device *dev, struct device_attribute *attr, char *buf) \
295static DEVICE_ATTR(name, S_IRUGO, name ## _show, NULL); 295static DEVICE_ATTR(name, S_IRUGO, name ## _show, NULL);
296 296
297 297
298/* Sysfs conventions report temperatures in millidegrees Celcius. 298/* Sysfs conventions report temperatures in millidegrees Celsius.
299 * ADS7846 could use the low-accuracy two-sample scheme, but can't do the high 299 * ADS7846 could use the low-accuracy two-sample scheme, but can't do the high
300 * accuracy scheme without calibration data. For now we won't try either; 300 * accuracy scheme without calibration data. For now we won't try either;
301 * userspace sees raw sensor values, and must scale/calibrate appropriately. 301 * userspace sees raw sensor values, and must scale/calibrate appropriately.