1# Bluetooth LE driver configuration options
2
3# Copyright (c) 2015-2016 Intel Corporation
4# SPDX-License-Identifier: Apache-2.0
5
6#
7# Bluetooth options
8#
9
10# Controller support is an HCI driver in itself, so these HCI driver
11# options are only applicable if controller support hasn't been enabled.
12menuconfig BT_DRIVERS
13	bool "Bluetooth drivers"
14	default y
15	depends on BT
16
17if BT_DRIVERS
18
19if BT_HCI
20source "drivers/bluetooth/hci/Kconfig"
21endif
22
23if BT_CUSTOM
24# Insert here any custom (non-HCI) offload drives
25endif
26
27endif # BT_DRIVERS
28