diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2013-11-15 19:43:53 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-11-15 19:43:53 -0500 |
commit | 4937e2a6f939a41bf811378e80d71f68aa0950c6 (patch) | |
tree | ed8ac843c96f01cd054542169afc968ec5d96189 /drivers/input/serio/Kconfig | |
parent | db0b2d01163cc3050eb52a979541e0d16553be48 (diff) | |
parent | 42249094f79422fbf5ed4b54eeb48ff096809b8f (diff) |
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input
Pull input updates from Dmitry Torokhov:
"Updates for the input subsystem. You will get an new drivers for
Hyper-V synthetic keyboard and for Neonode zForce touchscreens, plus a
bunch of driver fixes and cleanups"
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input: (49 commits)
Revert "Input: ALPS - add support for model found on Dell XT2"
arm: dts: am335x sk: add touchscreen support
Input: ti_am335x_tsc - fix spelling mistake in TSC/ADC DT binding
Input: cyttsp4 - replace IS_ERR and PTR_ERR with PTR_ERR_OR_ZERO
Input: mma8450 - add missing i2c_set_clientdata() in mma8450_probe()
Input: mpu3050 - add missing i2c_set_clientdata() in mpu3050_probe()
Input: tnetv107x-keypad - make irqs signed for error handling
Input: add driver for Neonode zForce based touchscreens
Input: sh_keysc - enable the driver on all ARM platforms
Input: remove a redundant max() call
Input: mousedev - allow disabling even without CONFIG_EXPERT
Input: allow deselecting serio drivers even without CONFIG_EXPERT
Input: i8042 - add PNP modaliases
Input: evdev - fall back to vmalloc for client event buffer
Input: cypress_ps2 - do not consider data bad if palm is detected
Input: cypress_ps2 - remove useless cast
Input: fix PWM-related undefined reference errors
Input: ALPS - change secondary device's name
Input: wacom - not all multi-interface devices support touch
Input: nspire-keypad - add missing clk_disable_unprepare() on error path
...
Diffstat (limited to 'drivers/input/serio/Kconfig')
-rw-r--r-- | drivers/input/serio/Kconfig | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/drivers/input/serio/Kconfig b/drivers/input/serio/Kconfig index 1de1e5f8f795..8541f949778d 100644 --- a/drivers/input/serio/Kconfig +++ b/drivers/input/serio/Kconfig | |||
@@ -2,7 +2,7 @@ | |||
2 | # Input core configuration | 2 | # Input core configuration |
3 | # | 3 | # |
4 | config SERIO | 4 | config SERIO |
5 | tristate "Serial I/O support" if EXPERT || !X86 | 5 | tristate "Serial I/O support" |
6 | default y | 6 | default y |
7 | help | 7 | help |
8 | Say Yes here if you have any input device that uses serial I/O to | 8 | Say Yes here if you have any input device that uses serial I/O to |
@@ -19,7 +19,7 @@ config SERIO | |||
19 | if SERIO | 19 | if SERIO |
20 | 20 | ||
21 | config SERIO_I8042 | 21 | config SERIO_I8042 |
22 | tristate "i8042 PC Keyboard controller" if EXPERT || !X86 | 22 | tristate "i8042 PC Keyboard controller" |
23 | default y | 23 | default y |
24 | depends on !PARISC && (!ARM || FOOTBRIDGE_HOST) && \ | 24 | depends on !PARISC && (!ARM || FOOTBRIDGE_HOST) && \ |
25 | (!SUPERH || SH_CAYMAN) && !M68K && !BLACKFIN && !S390 && \ | 25 | (!SUPERH || SH_CAYMAN) && !M68K && !BLACKFIN && !S390 && \ |
@@ -170,7 +170,7 @@ config SERIO_MACEPS2 | |||
170 | module will be called maceps2. | 170 | module will be called maceps2. |
171 | 171 | ||
172 | config SERIO_LIBPS2 | 172 | config SERIO_LIBPS2 |
173 | tristate "PS/2 driver library" if EXPERT | 173 | tristate "PS/2 driver library" |
174 | depends on SERIO_I8042 || SERIO_I8042=n | 174 | depends on SERIO_I8042 || SERIO_I8042=n |
175 | help | 175 | help |
176 | Say Y here if you are using a driver for device connected | 176 | Say Y here if you are using a driver for device connected |
@@ -266,4 +266,14 @@ config SERIO_OLPC_APSP | |||
266 | To compile this driver as a module, choose M here: the module will | 266 | To compile this driver as a module, choose M here: the module will |
267 | be called olpc_apsp. | 267 | be called olpc_apsp. |
268 | 268 | ||
269 | config HYPERV_KEYBOARD | ||
270 | tristate "Microsoft Synthetic Keyboard driver" | ||
271 | depends on HYPERV | ||
272 | default HYPERV | ||
273 | help | ||
274 | Select this option to enable the Hyper-V Keyboard driver. | ||
275 | |||
276 | To compile this driver as a module, choose M here: the module will | ||
277 | be called hyperv_keyboard. | ||
278 | |||
269 | endif | 279 | endif |