diff options
author | Randy Dunlap <randy.dunlap@oracle.com> | 2010-10-13 18:16:52 -0700 |
---|---|---|
committer | Gustavo F. Padovan <padovan@profusion.mobi> | 2010-11-09 00:55:27 -0200 |
commit | 96c99b473a8531188e2f6106c6ef0e33bb4500f2 (patch) | |
tree | 09df5d9f73e4b7d0c11359a25b78ed60a4866654 | |
parent | 48a7c3df14d0cda850337a9b3f9e667a0b12a996 (diff) |
Bluetooth: fix hidp kconfig dependency warning
Fix kconfig dependency warning to satisfy dependencies:
warning: (BT_HIDP && NET && BT && BT_L2CAP && INPUT || USB_HID && HID_SUPPORT && USB && INPUT) selects HID which has unmet direct dependencies (HID_SUPPORT && INPUT)
Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Acked-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
-rw-r--r-- | net/bluetooth/hidp/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/bluetooth/hidp/Kconfig b/net/bluetooth/hidp/Kconfig index 98fdfa1fbddd..86a91543172a 100644 --- a/net/bluetooth/hidp/Kconfig +++ b/net/bluetooth/hidp/Kconfig @@ -1,6 +1,6 @@ config BT_HIDP tristate "HIDP protocol support" - depends on BT && BT_L2CAP && INPUT + depends on BT && BT_L2CAP && INPUT && HID_SUPPORT select HID help HIDP (Human Interface Device Protocol) is a transport layer |