mirror of https://gitee.com/openkylin/linux.git
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>
This commit is contained in:
parent
23f30c41c7
commit
98d9856a75
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue