drivers: Bluetooth: rpmsg: Fix typo in BT_QUIRK_NO_AUTO_DLE use
Use CONFIG_BT_QUIRK_NO_AUTO_DLE as quirk option's
conditional compilation check.
Regression introduced in commit bd7ee86496
("drivers:
Bluetooth: rpmsg: Add missing BT_QUIRK_NO_AUTO_DLE").
Signed-off-by: Vinayak Kariappa Chettimada <vich@nordicsemi.no>
This commit is contained in:
parent
59888103d2
commit
cb1cf54406
1 changed files with 1 additions and 1 deletions
|
@ -198,7 +198,7 @@ static const struct bt_hci_driver drv = {
|
||||||
.open = bt_rpmsg_open,
|
.open = bt_rpmsg_open,
|
||||||
.send = bt_rpmsg_send,
|
.send = bt_rpmsg_send,
|
||||||
.bus = BT_HCI_DRIVER_BUS_IPM,
|
.bus = BT_HCI_DRIVER_BUS_IPM,
|
||||||
#if defined(BT_DRIVER_QUIRK_NO_AUTO_DLE)
|
#if defined(CONFIG_BT_DRIVER_QUIRK_NO_AUTO_DLE)
|
||||||
.quirks = BT_QUIRK_NO_AUTO_DLE,
|
.quirks = BT_QUIRK_NO_AUTO_DLE,
|
||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue