aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/bluetooth
diff options
context:
space:
mode:
authorLinus Walleij <linus.walleij@linaro.org>2021-03-18 09:43:09 +0100
committerMarcel Holtmann <marcel@holtmann.org>2021-03-18 10:17:05 +0100
commit81534d4835de52758176909f3e446f1d49809241 (patch)
tree5072d67f0e54695dc55e6f922677578e5822c125 /drivers/bluetooth
parentBluetooth: btbcm: Add BCM4334 DT binding (diff)
downloadlinux-dev-81534d4835de52758176909f3e446f1d49809241.tar.xz
linux-dev-81534d4835de52758176909f3e446f1d49809241.zip
Bluetooth: btbcm: Add BCM4330 and BCM4334 compatibles
Add the missing brcm,bcm4330-bt and brcm,bcm4334-bt to the match table so device trees can use this compatible as well and not need to use the fallback brcm,bcm4329-bt. Signed-off-by: Linus Walleij <linus.walleij@linaro.org> Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'drivers/bluetooth')
-rw-r--r--drivers/bluetooth/hci_bcm.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/bluetooth/hci_bcm.c b/drivers/bluetooth/hci_bcm.c
index 93a4c03a8787..3cd57fc56ade 100644
--- a/drivers/bluetooth/hci_bcm.c
+++ b/drivers/bluetooth/hci_bcm.c
@@ -1499,6 +1499,8 @@ static struct bcm_device_data bcm43438_device_data = {
static const struct of_device_id bcm_bluetooth_of_match[] = {
{ .compatible = "brcm,bcm20702a1" },
{ .compatible = "brcm,bcm4329-bt" },
+ { .compatible = "brcm,bcm4330-bt" },
+ { .compatible = "brcm,bcm4334-bt" },
{ .compatible = "brcm,bcm4345c5" },
{ .compatible = "brcm,bcm4330-bt" },
{ .compatible = "brcm,bcm43438-bt", .data = &bcm43438_device_data },