summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorScott Ehlert <ehlert@battelle.org>2024-09-05 11:01:00 -0700
committerLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2024-09-12 12:24:08 -0400
commit9a53d1ff631f5b85019bb243ccb8c66af5010e97 (patch)
treee9ce54412a401a791a1b0420df93d40957caf38a /drivers
parentcfbfeee61582e638770a1a10deef866c9adb38f5 (diff)
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 <ehlert@battelle.org> Signed-off-by: Tim Harvey <tharvey@gateworks.com> Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/bluetooth/btsdio.c1
1 files changed, 1 insertions, 0 deletions
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;
}
}