Commit 221ce12d authored by Marcel Holtmann's avatar Marcel Holtmann

[Bluetooth] Skip raw mode devices when choosing source device

When selecting the best source device for outgoing connections the
devices in raw mode should be skipped.
Signed-off-by: default avatarMarcel Holtmann <marcel@holtmann.org>
parent 15fb26c1
......@@ -226,7 +226,7 @@ struct hci_dev *hci_get_route(bdaddr_t *dst, bdaddr_t *src)
list_for_each(p, &hci_dev_list) {
struct hci_dev *d = list_entry(p, struct hci_dev, list);
if (!test_bit(HCI_UP, &d->flags))
if (!test_bit(HCI_UP, &d->flags) || test_bit(HCI_RAW, &d->flags))
continue;
/* Simple routing:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment