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:34:11 -0800 |
commit | 5beebfa585c2348312b5934e588acbb97246765b (patch) | |
tree | f3be8137923e0c03e494b72ae30587a48058fd4d | |
parent | 315a93764c1fa8bdbe9ab867d896a0d9478b54ed (diff) |
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>
-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 33259798081..20026e3a234 100644 --- a/drivers/input/Kconfig +++ b/drivers/input/Kconfig @@ -71,7 +71,7 @@ config INPUT_SPARSEKMAP 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 |