diff options
author | Tom Gundersen <teg@jklm.no> | 2013-10-31 00:44:49 -0700 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-12-11 22:36:28 -0800 |
commit | e9295a956ba01ab0cab6a7e9f6eca73da23373a8 (patch) | |
tree | 52064084e981be184cdd7c5e167de0b39e9b9540 /drivers/input | |
parent | 4cdd9497f6ece54905d1df1d793b136c79123b09 (diff) | |
download | linux-3.10-e9295a956ba01ab0cab6a7e9f6eca73da23373a8.tar.gz linux-3.10-e9295a956ba01ab0cab6a7e9f6eca73da23373a8.tar.bz2 linux-3.10-e9295a956ba01ab0cab6a7e9f6eca73da23373a8.zip |
Input: mousedev - allow disabling even without CONFIG_EXPERT
commit dfaaed08ecc01bd513248ba7999daf50ce028352 upstream.
Moust (if not all) modern software, including X, uses /dev/eventX rather than
the legacy /dev/mouseX devices. It therefore makes sense for general-purpose
(distro) kernels to use MOUSEDV=m (or even n), so let's drop the EXPERT=y
requirement.
Signed-off-by: Tom Gundersen <teg@jklm.no>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/input')
-rw-r--r-- | drivers/input/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/input/Kconfig b/drivers/input/Kconfig index 38b523a1ece..a11ff74a512 100644 --- a/drivers/input/Kconfig +++ b/drivers/input/Kconfig @@ -80,7 +80,7 @@ config INPUT_MATRIXKMAP comment "Userland interfaces" config INPUT_MOUSEDEV - tristate "Mouse interface" if EXPERT + tristate "Mouse interface" default y help Say Y here if you want your mouse to be accessible as char devices |