Messages in this thread Patch in this message |  | | From | Heiko Carstens <> | Subject | [PATCH 07/15] drivers/hid: add missing GENERIC_HARDIRQ dependency | Date | Wed, 6 Feb 2013 17:23:55 +0100 |
| |
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.
Cc: Jiri Kosina <jkosina@suse.cz> Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com> --- drivers/hid/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/hid/Kconfig b/drivers/hid/Kconfig index 61d2453..9613c81 100644 --- a/drivers/hid/Kconfig +++ b/drivers/hid/Kconfig @@ -725,7 +725,7 @@ config HID_ZYDACRON config HID_SENSOR_HUB tristate "HID Sensors framework support" - depends on USB_HID + depends on USB_HID && GENERIC_HARDIRQS select MFD_CORE default n -- help--- -- 1.7.10.4
|  |