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:
Vinayak Kariappa Chettimada 2020-09-09 21:28:29 +05:30 committed by Carles Cufí
commit cb1cf54406

View file

@ -198,7 +198,7 @@ static const struct bt_hci_driver drv = {
.open = bt_rpmsg_open,
.send = bt_rpmsg_send,
.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,
#endif
};