Commit af3dac21 authored by Johan Hedberg's avatar Johan Hedberg Committed by Mahesh Mahadevan
Browse files

Bluetooth: drivers: Sync bus types with BlueZ

The authoritative source of these values is BlueZ:

https://git.kernel.org/pub/scm/bluetooth/bluez.git/tree/lib/hci.h#n38



Update our values with the above. The IPM definiton doesn't exist in
BlueZ, but should be added there to make sure we don't get out of sync
again.

Signed-off-by: default avatarJohan Hedberg <johan.hedberg@silabs.com>
parent d5c88d65
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -19,6 +19,8 @@ properties:
      - "sdio"
      - "spi"
      - "i2c"
      - "smd"
      - "virtio"
      - "ipm"
  bt-hci-quirks:
    type: string-array
+3 −1
Original line number Diff line number Diff line
@@ -69,7 +69,9 @@ enum bt_hci_bus {
	BT_HCI_BUS_SDIO          = 6,
	BT_HCI_BUS_SPI           = 7,
	BT_HCI_BUS_I2C           = 8,
	BT_HCI_BUS_IPM           = 9,
	BT_HCI_BUS_SMD           = 9,
	BT_HCI_BUS_VIRTIO        = 10,
	BT_HCI_BUS_IPM           = 11,
};

#define BT_DT_HCI_QUIRK_OR(node_id, prop, idx) \