From: Jan Engelhardt Date: Mon, 30 Apr 2007 11:27:48 +0000 (+0200) Subject: HID: Use menuconfig objects X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=3cd709866f639d24b0d0f38567c19662c98ea92e;p=mv-sheeva.git 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 Signed-off-by: Jiri Kosina --- diff --git a/drivers/hid/Kconfig b/drivers/hid/Kconfig index 8fbe9fdac12..d96eb086582 100644 --- a/drivers/hid/Kconfig +++ b/drivers/hid/Kconfig @@ -1,8 +1,12 @@ # # HID driver configuration # -menu "HID Devices" +menuconfig HID_SUPPORT + bool "HID Devices" depends on INPUT + default y + +if HID_SUPPORT config HID tristate "Generic HID support" @@ -38,5 +42,4 @@ config HID_DEBUG source "drivers/hid/usbhid/Kconfig" -endmenu - +endif # HID_SUPPORT