Skip to content

Commit ddbaf13

Browse files
holtmannDavid S. Miller
authored andcommitted
[Bluetooth] Add generic driver for Bluetooth SDIO devices
This patch adds a generic driver for Bluetooth SDIO devices. It supports Type-A and Type-B devices. Signed-off-by: David Vrabel <[email protected]> Signed-off-by: Marcel Holtmann <[email protected]>
1 parent ac01936 commit ddbaf13

File tree

3 files changed

+419
-0
lines changed

3 files changed

+419
-0
lines changed

drivers/bluetooth/Kconfig

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,17 @@ config BT_HCIUSB_SCO
2222

2323
Say Y here to compile support for SCO over HCI USB.
2424

25+
config BT_HCIBTSDIO
26+
tristate "HCI SDIO driver"
27+
depends on MMC
28+
help
29+
Bluetooth HCI SDIO driver.
30+
This driver is required if you want to use Bluetooth device with
31+
SDIO interface.
32+
33+
Say Y here to compile support for Bluetooth SDIO devices into the
34+
kernel or say M to compile it as module (btsdio).
35+
2536
config BT_HCIUART
2637
tristate "HCI UART driver"
2738
help

drivers/bluetooth/Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ obj-$(CONFIG_BT_HCIBT3C) += bt3c_cs.o
1313
obj-$(CONFIG_BT_HCIBLUECARD) += bluecard_cs.o
1414
obj-$(CONFIG_BT_HCIBTUART) += btuart_cs.o
1515

16+
obj-$(CONFIG_BT_HCIBTSDIO) += btsdio.o
17+
1618
hci_uart-y := hci_ldisc.o
1719
hci_uart-$(CONFIG_BT_HCIUART_H4) += hci_h4.o
1820
hci_uart-$(CONFIG_BT_HCIUART_BCSP) += hci_bcsp.o

0 commit comments

Comments
 (0)