mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 14:11:52 +00:00
6cc90ccd4f
If HID_SUPPORT is not selected, BT_HIDP should not be available, simply because we disallowed the HID bus entirely. Add a new depends and actually revert this file back to where it was 10 years ago before it was changed by commit1f41a6a994
("HID: Fix the generic Kconfig options"). Fixes:25621bcc89
("HID: Kconfig: split HID support and hid-core compilation") Reported-by: kernel test robot <lkp@intel.com> Link: https://lore.kernel.org/r/202211181514.fLhaiS7o-lkp@intel.com/ Signed-off-by: Benjamin Tissoires <benjamin.tissoires@redhat.com> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
14 lines
406 B
Plaintext
14 lines
406 B
Plaintext
# SPDX-License-Identifier: GPL-2.0-only
|
|
config BT_HIDP
|
|
tristate "HIDP protocol support"
|
|
depends on BT_BREDR && INPUT && HID_SUPPORT
|
|
select HID
|
|
help
|
|
HIDP (Human Interface Device Protocol) is a transport layer
|
|
for HID reports. HIDP is required for the Bluetooth Human
|
|
Interface Device Profile.
|
|
|
|
Say Y here to compile HIDP support into the kernel or say M to
|
|
compile it as module (hidp).
|
|
|