From 8d4921c7d0594b808da32e9edb63c52c261083cb Mon Sep 17 00:00:00 2001 From: Bastien Nocera Date: Tue, 19 Nov 2024 16:44:09 +0100 Subject: [PATCH] Bluetooth: btsdio: Do not bind to non-removable CYW4373 JIRA: https://issues.redhat.com/browse/RHEL-61734 commit 9a53d1ff631f5b85019bb243ccb8c66af5010e97 Author: Scott Ehlert Date: Thu Sep 5 11:01:00 2024 -0700 Bluetooth: btsdio: Do not bind to non-removable CYW4373 CYW4373 devices soldered onto the PCB (non-removable), use a UART connection for Bluetooth and the advertised btsdio support as an SDIO function should be ignored. Signed-off-by: Scott Ehlert Signed-off-by: Tim Harvey Signed-off-by: Luiz Augusto von Dentz Signed-off-by: Bastien Nocera --- drivers/bluetooth/btsdio.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/bluetooth/btsdio.c b/drivers/bluetooth/btsdio.c index fdcfe9c50313..a69feb08486a 100644 --- a/drivers/bluetooth/btsdio.c +++ b/drivers/bluetooth/btsdio.c @@ -295,6 +295,7 @@ static int btsdio_probe(struct sdio_func *func, case SDIO_DEVICE_ID_BROADCOM_4345: case SDIO_DEVICE_ID_BROADCOM_43455: case SDIO_DEVICE_ID_BROADCOM_4356: + case SDIO_DEVICE_ID_BROADCOM_CYPRESS_4373: return -ENODEV; } }