diff options
author | Vasily Khoruzhick <anarsoul@gmail.com> | 2020-04-25 08:55:30 -0700 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2020-05-11 12:13:37 +0200 |
commit | 4765db373ea34c7262e3467f8aaf4167dd1cdafa (patch) | |
tree | 7fce2061debc7523bc73fa717f0360344d2426ce | |
parent | 1cc2d0e021f8675065b8c5dc74305789d9e54113 (diff) |
Bluetooth: hci_h5: Add support for binding RTL8723BS with device tree
RTL8723BS is often used in ARM boards, so add ability to bind it
using device tree.
Signed-off-by: Vasily Khoruzhick <anarsoul@gmail.com>
Signed-off-by: Alistair Francis <alistair@alistair23.me>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
-rw-r--r-- | drivers/bluetooth/hci_h5.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/bluetooth/hci_h5.c b/drivers/bluetooth/hci_h5.c index 106c110efe56..e60b2e0773db 100644 --- a/drivers/bluetooth/hci_h5.c +++ b/drivers/bluetooth/hci_h5.c @@ -1018,6 +1018,8 @@ static const struct of_device_id rtl_bluetooth_of_match[] = { #ifdef CONFIG_BT_HCIUART_RTL { .compatible = "realtek,rtl8822cs-bt", .data = (const void *)&rtl_vnd }, + { .compatible = "realtek,rtl8723bs-bt", + .data = (const void *)&rtl_vnd }, #endif { }, }; |