diff mbox series

[v2] Bluetooth: btsdio: Do not bind to non-removable CYW4373

Message ID 20240905180100.507975-1-tharvey@gateworks.com
State New
Headers show
Series [v2] Bluetooth: btsdio: Do not bind to non-removable CYW4373 | expand

Commit Message

Tim Harvey Sept. 5, 2024, 6:01 p.m. UTC
From: Scott Ehlert <ehlert@battelle.org>

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>
---
v2: no changes; resending due to being dropped for unrelated CI failure
---
 drivers/bluetooth/btsdio.c | 1 +
 1 file changed, 1 insertion(+)

Comments

patchwork-bot+bluetooth@kernel.org Sept. 12, 2024, 4:33 p.m. UTC | #1
Hello:

This patch was applied to bluetooth/bluetooth-next.git (master)
by Luiz Augusto von Dentz <luiz.von.dentz@intel.com>:

On Thu,  5 Sep 2024 11:01:00 -0700 you wrote:
> From: Scott Ehlert <ehlert@battelle.org>
> 
> 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>
> 
> [...]

Here is the summary with links:
  - [v2] Bluetooth: btsdio: Do not bind to non-removable CYW4373
    https://git.kernel.org/bluetooth/bluetooth-next/c/9a53d1ff631f

You are awesome, thank you!
diff mbox series

Patch

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;
 		}
 	}