[Bluetooth] Let BT_HIDP depend on INPUT
This patch lets BT_HIDP depend on instead of select INPUT. This fixes the following warning during an s390 build: net/bluetooth/hidp/Kconfig:4:warning: 'select' used by config symbol 'BT_HIDP' refer to undefined symbol 'INPUT' A dependency on INPUT also implies !S390 (and therefore makes the explicit dependency obsolete) since INPUT is not available on s390. The practical difference should be nearly zero, since INPUT is always set to y unless EMBEDDED=y (or S390=y). Signed-off-by: Adrian Bunk <bunk@stusta.de> Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
This commit is contained in:
parent
420cc3505f
commit
0263603a01
1 changed files with 1 additions and 2 deletions
|
@ -1,7 +1,6 @@
|
||||||
config BT_HIDP
|
config BT_HIDP
|
||||||
tristate "HIDP protocol support"
|
tristate "HIDP protocol support"
|
||||||
depends on BT && BT_L2CAP && (BROKEN || !S390)
|
depends on BT && BT_L2CAP && INPUT
|
||||||
select INPUT
|
|
||||||
help
|
help
|
||||||
HIDP (Human Interface Device Protocol) is a transport layer
|
HIDP (Human Interface Device Protocol) is a transport layer
|
||||||
for HID reports. HIDP is required for the Bluetooth Human
|
for HID reports. HIDP is required for the Bluetooth Human
|
||||||
|
|
Loading…
Reference in a new issue