Skip to content

Commit

Permalink
Add HCI over smd
Browse files Browse the repository at this point in the history
  • Loading branch information
adeen-s committed Jun 5, 2016
1 parent af6d1c2 commit 4627f4f
Show file tree
Hide file tree
Showing 6 changed files with 695 additions and 0 deletions.
1 change: 1 addition & 0 deletions arch/arm/configs/cyanogenmod_wt88047_defconfig
Original file line number Diff line number Diff line change
Expand Up @@ -1036,6 +1036,7 @@ CONFIG_BT_HIDP=y
# CONFIG_BT_HCIBTSDIO is not set
CONFIG_BT_HCIUART_H4=y
CONFIG_BT_HCIUART=y
CONFIG_BT_HCISMD=y
# CONFIG_BT_HCIBCM203X is not set
# CONFIG_BT_HCIBPA10X is not set
# CONFIG_BT_HCIBFUSB is not set
Expand Down
10 changes: 10 additions & 0 deletions drivers/bluetooth/Kconfig
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Loading

0 comments on commit 4627f4f

Please sign in to comment.