]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
Bluetooth: hci_ll: Add compatible values for more WL chips
authorSebastian Reichel <sebastian.reichel@collabora.co.uk>
Thu, 8 Jun 2017 20:58:45 +0000 (22:58 +0200)
committerMarcel Holtmann <marcel@holtmann.org>
Fri, 9 Jun 2017 05:33:56 +0000 (07:33 +0200)
Add compatible values for WiLink chips from 128x and 180x series.
Also the DT binding already contained compatible values for the 127x
series, but the driver did not. This brings the list on par with
the list from wlcore (the wifi driver).

Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.co.uk>
Reviewed-by: Rob Herring <robh@kernel.org>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Documentation/devicetree/bindings/net/ti,wilink-st.txt
drivers/bluetooth/hci_ll.c

index cbad73a84ac43250865fd6e47dc47a388e082342..b1a421e2fde3665e0abf77a79635540fd4382184 100644 (file)
@@ -14,6 +14,12 @@ Required properties:
  - compatible: should be one of the following:
     "ti,wl1271-st"
     "ti,wl1273-st"
+    "ti,wl1281-st"
+    "ti,wl1283-st"
+    "ti,wl1285-st"
+    "ti,wl1801-st"
+    "ti,wl1805-st"
+    "ti,wl1807-st"
     "ti,wl1831-st"
     "ti,wl1835-st"
     "ti,wl1837-st"
index 200288c87fc431ae623c116f14115e1d607733f4..1b0487310117fab219c5e27d63eadd6f3723570f 100644 (file)
@@ -741,6 +741,14 @@ static void hci_ti_remove(struct serdev_device *serdev)
 }
 
 static const struct of_device_id hci_ti_of_match[] = {
+       { .compatible = "ti,wl1271-st" },
+       { .compatible = "ti,wl1273-st" },
+       { .compatible = "ti,wl1281-st" },
+       { .compatible = "ti,wl1283-st" },
+       { .compatible = "ti,wl1285-st" },
+       { .compatible = "ti,wl1801-st" },
+       { .compatible = "ti,wl1805-st" },
+       { .compatible = "ti,wl1807-st" },
        { .compatible = "ti,wl1831-st" },
        { .compatible = "ti,wl1835-st" },
        { .compatible = "ti,wl1837-st" },