diff options
author | Andre Guedes <andre.guedes@openbossa.org> | 2011-05-31 14:20:54 -0300 |
---|---|---|
committer | Jaikumar Ganesh <jaikumar@google.com> | 2011-07-11 11:59:15 -0700 |
commit | 149c097ce73e6f301c8d257828334506028be307 (patch) | |
tree | a6999e366d7fa9ff00ef87db69e98a7274e88d10 /include/net | |
parent | 54444290da43c96a66c30233c170f08b30fe6633 (diff) | |
download | kernel_samsung_tuna-149c097ce73e6f301c8d257828334506028be307.zip kernel_samsung_tuna-149c097ce73e6f301c8d257828334506028be307.tar.gz kernel_samsung_tuna-149c097ce73e6f301c8d257828334506028be307.tar.bz2 |
Bluetooth: Add 'dst_type' field to struct hci_conn
This patch adds a new field (dst_type) to the struct hci_conn which
holds the type of the destination address (bdaddr_t dst). This
approach is needed in order to use the struct hci_conn as an
abstraction of LE connections in HCI Layer. For non-LE this field
is ignored.
This patch also set properly the 'dst_type' field after initializing
LE hci_conn structures.
Change-Id: I1e363bb6de263fdb1fe976a5a16ed5debc9b8c0c
Signed-off-by: Andre Guedes <andre.guedes@openbossa.org>
Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
Diffstat (limited to 'include/net')
-rw-r--r-- | include/net/bluetooth/hci_core.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/net/bluetooth/hci_core.h b/include/net/bluetooth/hci_core.h index 90a921c..924e172 100644 --- a/include/net/bluetooth/hci_core.h +++ b/include/net/bluetooth/hci_core.h @@ -224,6 +224,7 @@ struct hci_conn { spinlock_t lock; bdaddr_t dst; + __u8 dst_type; __u16 handle; __u16 state; __u8 mode; |