From ea5b866763ebcc6222e28e335b6add6051671c56 Mon Sep 17 00:00:00 2001 From: Loic Poulain Date: Tue, 29 May 2018 12:44:35 +0200 Subject: [PATCH] Bluetooth: hci: spi: Select BT_RECV_IS_RX_THREAD SPI driver has its own rx thread, select BT_RECV_IS_RX_THREAD. This fixes build issue because of undefined CONFIG_BT_RX_PRIO. Signed-off-by: Loic Poulain --- drivers/bluetooth/hci/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/bluetooth/hci/Kconfig b/drivers/bluetooth/hci/Kconfig index e6a5727369f..c2bf91b56f1 100644 --- a/drivers/bluetooth/hci/Kconfig +++ b/drivers/bluetooth/hci/Kconfig @@ -35,6 +35,7 @@ config BT_H5 config BT_SPI bool "SPI HCI" + select BT_RECV_IS_RX_THREAD depends on SPI help Supports Bluetooth ICs using SPI as the communication protocol.