Skip to content

Commit

Permalink
Add and port the BT HCI SMD driver
Browse files Browse the repository at this point in the history
Change-Id: I19e3cd2c7043d192590e4f81af6f8a18c9513d5e
  • Loading branch information
piggz committed Dec 4, 2017
1 parent ba667d6 commit 163a754
Show file tree
Hide file tree
Showing 6 changed files with 694 additions and 0 deletions.
1 change: 1 addition & 0 deletions arch/arm64/configs/mido_defconfig
Expand Up @@ -4650,3 +4650,4 @@ CONFIG_MODULE_FORCE_UNLOAD=y
CONFIG_MODVERSIONS=y
CONFIG_WIL6210=m
CONFIG_PRONTO_WLAN=m
CONFIG_BT_HCISMD=y
10 changes: 10 additions & 0 deletions drivers/bluetooth/Kconfig
Expand Up @@ -2,6 +2,16 @@
menu "Bluetooth device drivers"
depends on BT

config BT_HCISMD
tristate "HCI SMD driver"
help
Bluetooth HCI SMD driver.
This driver is required if you want to use Bluetoth device with
SMD interface.

Say Y here to compile support for Bluetooth USB devices into the
kernel or say M to compile is as a module (hci_smd).

config BT_HCIBTUSB
tristate "HCI USB driver"
depends on USB
Expand Down
1 change: 1 addition & 0 deletions drivers/bluetooth/Makefile
Expand Up @@ -2,6 +2,7 @@
# Makefile for the Linux Bluetooth HCI device drivers.
#

obj-$(CONFIG_BT_HCISMD) += hci_smd.o
obj-$(CONFIG_BT_HCIVHCI) += hci_vhci.o
obj-$(CONFIG_BT_HCIUART) += hci_uart.o
obj-$(CONFIG_BT_HCIBCM203X) += bcm203x.o
Expand Down

0 comments on commit 163a754

Please sign in to comment.