diff options
author | Russell King <rmk+lkml@arm.linux.org.uk> | 2006-12-22 17:09:16 +0000 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2007-01-04 11:41:55 +0100 |
commit | c96c9d7b618806a0b9256503cec2755291d60cf6 (patch) | |
tree | 5b1a533439b3ec36af34975fb6784706c56e22a9 /drivers/hid/Kconfig | |
parent | a7ec3f5289681e9d63b65db5f56857f998812b4b (diff) | |
download | blackbird-obmc-linux-c96c9d7b618806a0b9256503cec2755291d60cf6.tar.gz blackbird-obmc-linux-c96c9d7b618806a0b9256503cec2755291d60cf6.zip |
Fix some ARM builds due to HID brokenness
HID it defaults to 'y'. When you have input deselected, this
causes the kernel to fail to link.
Fix it by making it depend on INPUT.
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/hid/Kconfig')
-rw-r--r-- | drivers/hid/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/hid/Kconfig b/drivers/hid/Kconfig index 96d4a0bb2203..1ccc222a9d0d 100644 --- a/drivers/hid/Kconfig +++ b/drivers/hid/Kconfig @@ -6,6 +6,7 @@ menu "HID Devices" config HID tristate "Generic HID support" + depends on INPUT default y ---help--- Say Y here if you want generic HID support to connect keyboards, |