c41dd36de2
Unify the drivers/*/Kconfig menuconfig title strings to the format "<class> [(acronym)] [bus] drivers". Including both the full name of the driver class and an acronym makes menuconfig more user friendly as some of the acronyms are less well-known than others. It also improves Kconfig search, both via menuconfig and via the generated Kconfig documentation. Signed-off-by: Henrik Brix Andersen <hebad@vestas.com>
28 lines
542 B
Plaintext
28 lines
542 B
Plaintext
# Bluetooth LE driver configuration options
|
|
|
|
# Copyright (c) 2015-2016 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
#
|
|
# Bluetooth options
|
|
#
|
|
|
|
# Controller support is an HCI driver in itself, so these HCI driver
|
|
# options are only applicable if controller support hasn't been enabled.
|
|
menuconfig BT_DRIVERS
|
|
bool "Bluetooth drivers"
|
|
default y
|
|
depends on BT && !BT_CTLR
|
|
|
|
if BT_DRIVERS
|
|
|
|
if BT_HCI
|
|
source "drivers/bluetooth/hci/Kconfig"
|
|
endif
|
|
|
|
if BT_CUSTOM
|
|
# Insert here any custom (non-HCI) offload drives
|
|
endif
|
|
|
|
endif # BT_DRIVERS
|