Commit 8f1e1742233cd1c3444dfc6c945a2efb2814e157
Committed by
Gustavo F. Padovan
1 parent
29b4433d99
Exists in
master
and in
7 other branches
Bluetooth: HCI devices are either BR/EDR or AMP radios
HCI transport drivers may not know what type of radio an AMP device has so only say whether they're BR/EDR or AMP devices. Signed-off-by: David Vrabel <david.vrabel@csr.com> Signed-off-by: Marcel Holtmann <marcel@holtmann.org> Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
Showing 3 changed files with 5 additions and 5 deletions Side-by-side Diff
drivers/bluetooth/btmrvl_main.c
... | ... | @@ -117,8 +117,8 @@ |
117 | 117 | (event->data[2] == MODULE_ALREADY_UP)) ? |
118 | 118 | "Bring-up succeed" : "Bring-up failed"); |
119 | 119 | |
120 | - if (event->length > 3) | |
121 | - priv->btmrvl_dev.dev_type = event->data[3]; | |
120 | + if (event->length > 3 && event->data[3]) | |
121 | + priv->btmrvl_dev.dev_type = HCI_AMP; | |
122 | 122 | else |
123 | 123 | priv->btmrvl_dev.dev_type = HCI_BREDR; |
124 | 124 |
include/net/bluetooth/hci.h