aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/hid/Kconfig
diff options
context:
space:
mode:
authorHeiko Carstens <heiko.carstens@de.ibm.com>2013-02-06 11:23:55 -0500
committerJiri Kosina <jkosina@suse.cz>2013-02-07 05:36:16 -0500
commite7e2b788614c453c72550264bd915ba8923218e8 (patch)
tree8e9e7076591faaf046e2c523516979551ff24cbe /drivers/hid/Kconfig
parentb77a989acca3fb4d09c2d8c3749499c663f5ab9f (diff)
HID: add missing GENERIC_HARDIRQ dependency
HID Sensors framework support (CONFIG_HID_SENSOR_HUB) unconditionally selects MFD_CORE which however depends on GENERIC_HARDIRQS. So add this dependency to HID_SENSOR_HUB as well. Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/hid/Kconfig')
-rw-r--r--drivers/hid/Kconfig2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hid/Kconfig b/drivers/hid/Kconfig
index e7d6a13ec6a6..bf88eca3e868 100644
--- a/drivers/hid/Kconfig
+++ b/drivers/hid/Kconfig
@@ -719,7 +719,7 @@ config HID_ZYDACRON
719 719
720config HID_SENSOR_HUB 720config HID_SENSOR_HUB
721 tristate "HID Sensors framework support" 721 tristate "HID Sensors framework support"
722 depends on USB_HID 722 depends on USB_HID && GENERIC_HARDIRQS
723 select MFD_CORE 723 select MFD_CORE
724 default n 724 default n
725 -- help--- 725 -- help---