mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
4b46819f6c
Bluetooth 3.0+HS depends on an AMP manager to coordinate the setup and teardown of AMP physical and logical links using the A2MP protocol. There are also new L2CAP signals that allow two Bluetooth devices to move L2CAP channels to and from a high-speed link, and a new socket option for applications to use to control the type of Bluetooth link used for L2CAP traffic. Change-Id: I98067e0781b31f5d694e7b7da5cf5006dc21f514 Signed-off-by: Mat Martineau <mathewm@codeaurora.org>
13 lines
362 B
Makefile
13 lines
362 B
Makefile
#
|
|
# Makefile for the Linux Bluetooth subsystem.
|
|
#
|
|
|
|
obj-$(CONFIG_BT) += bluetooth.o
|
|
obj-$(CONFIG_BT_RFCOMM) += rfcomm/
|
|
obj-$(CONFIG_BT_BNEP) += bnep/
|
|
obj-$(CONFIG_BT_CMTP) += cmtp/
|
|
obj-$(CONFIG_BT_HIDP) += hidp/
|
|
|
|
bluetooth-y := af_bluetooth.o hci_core.o hci_conn.o hci_event.o mgmt.o \
|
|
hci_sock.o hci_sysfs.o l2cap_core.o l2cap_sock.o smp.o sco.o lib.o \
|
|
amp.o
|