aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/hid
diff options
context:
space:
mode:
authorJan Engelhardt <jengelh@linux01.gwdg.de>2007-04-30 07:27:48 -0400
committerJiri Kosina <jkosina@suse.cz>2007-07-09 08:13:30 -0400
commit3cd709866f639d24b0d0f38567c19662c98ea92e (patch)
tree7d04589b92ad4e6f52f94b46bd6b756bc5f0434a /drivers/hid
parentdefd208681b721dbf2b69347cca5302d60246405 (diff)
HID: Use menuconfig objects
Make a "menuconfig" out of the Kconfig objects "menu, ..., endmenu", so that the user can disable all the options in that menu at once instead of having to disable each option separately. Signed-off-by: Jan Engelhardt <jengelh@gmx.de> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/hid')
-rw-r--r--drivers/hid/Kconfig9
1 files changed, 6 insertions, 3 deletions
diff --git a/drivers/hid/Kconfig b/drivers/hid/Kconfig
index 8fbe9fdac128..d96eb0865829 100644
--- a/drivers/hid/Kconfig
+++ b/drivers/hid/Kconfig
@@ -1,8 +1,12 @@
1# 1#
2# HID driver configuration 2# HID driver configuration
3# 3#
4menu "HID Devices" 4menuconfig HID_SUPPORT
5 bool "HID Devices"
5 depends on INPUT 6 depends on INPUT
7 default y
8
9if HID_SUPPORT
6 10
7config HID 11config HID
8 tristate "Generic HID support" 12 tristate "Generic HID support"
@@ -38,5 +42,4 @@ config HID_DEBUG
38 42
39source "drivers/hid/usbhid/Kconfig" 43source "drivers/hid/usbhid/Kconfig"
40 44
41endmenu 45endif # HID_SUPPORT
42