aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/bluetooth
diff options
context:
space:
mode:
authorPeter Robinson <pbrobinson@gmail.com>2019-06-30 23:14:08 +0100
committerMarcel Holtmann <marcel@holtmann.org>2019-07-06 12:27:55 +0200
commit98d9856a759f5cc8032efeb5c87badc1c652d430 (patch)
treed3d613498428a91b34524ce2581547cf81a43eae /drivers/bluetooth
parentMerge branch 'mlx5-TLS-TX-HW-offload-support' (diff)
downloadlinux-dev-98d9856a759f5cc8032efeb5c87badc1c652d430.tar.xz
linux-dev-98d9856a759f5cc8032efeb5c87badc1c652d430.zip
Bluetooth: btsdio: Do not bind to non-removable BCM4356
BCM4356 devices soldered onto the PCB (non-removable) use an UART connection for bluetooth, such as the Rock960, but it also advertise btsdio support as a sdio function. Signed-off-by: Peter Robinson <pbrobinson@gmail.com> CC: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org> Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'drivers/bluetooth')
-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 83748b7b2033..fd9571d5fdac 100644
--- a/drivers/bluetooth/btsdio.c
+++ b/drivers/bluetooth/btsdio.c
@@ -286,6 +286,7 @@ static int btsdio_probe(struct sdio_func *func,
switch (func->device) {
case SDIO_DEVICE_ID_BROADCOM_43341:
case SDIO_DEVICE_ID_BROADCOM_43430:
+ case SDIO_DEVICE_ID_BROADCOM_4356:
return -ENODEV;
}
}