09c3938ff5db5edeefb3f1f0f13531ef58e6f21a
[openwrt/openwrt.git] /
1 From 6a9eb32230f33ae273f6ffbabb0aaf560869816e Mon Sep 17 00:00:00 2001
2 From: Scott Ehlert <ehlert@battelle.org>
3 Date: Mon, 29 Apr 2024 11:23:09 -0700
4 Subject: [PATCH] Bluetooth: btsdio: Do not bind to non-removable CYW4373
5
6 CYW4373 devices soldered onto the PCB (non-removable),
7 use a UART connection for Bluetooth and the advertised btsdio
8 support as an SDIO function should be ignored.
9
10 Signed-off-by: Scott Ehlert <ehlert@battelle.org>
11 Signed-off-by: Tim Harvey <tharvey@gateworks.com>
12 ---
13 drivers/bluetooth/btsdio.c | 1 +
14 1 file changed, 1 insertion(+)
15
16 --- a/drivers/bluetooth/btsdio.c
17 +++ b/drivers/bluetooth/btsdio.c
18 @@ -295,6 +295,7 @@ static int btsdio_probe(struct sdio_func
19 case SDIO_DEVICE_ID_BROADCOM_4345:
20 case SDIO_DEVICE_ID_BROADCOM_43455:
21 case SDIO_DEVICE_ID_BROADCOM_4356:
22 + case SDIO_DEVICE_ID_BROADCOM_CYPRESS_4373:
23 return -ENODEV;
24 }
25 }