32 lines
1.0 KiB
Diff
32 lines
1.0 KiB
Diff
From 93d424cad6122dea426313bde6f299330e14e774 Mon Sep 17 00:00:00 2001
|
|
From: Vasily Khoruzhick <anarsoul@gmail.com>
|
|
Date: Wed, 31 Oct 2018 20:07:41 -0700
|
|
Subject: [PATCH 308/478] Bluetooth: hci_h5: Add support for binding RTL8723CS
|
|
with device tree
|
|
|
|
RTL8723CS 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: Ondrej Jirman <megous@megous.com>
|
|
---
|
|
drivers/bluetooth/hci_h5.c | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
|
|
diff --git a/drivers/bluetooth/hci_h5.c b/drivers/bluetooth/hci_h5.c
|
|
index 0c0dedece59c..c82b2547d242 100644
|
|
--- a/drivers/bluetooth/hci_h5.c
|
|
+++ b/drivers/bluetooth/hci_h5.c
|
|
@@ -1096,6 +1096,8 @@ static const struct of_device_id rtl_bluetooth_of_match[] = {
|
|
.data = (const void *)&h5_data_rtl8723bs },
|
|
{ .compatible = "realtek,rtl8723ds-bt",
|
|
.data = (const void *)&h5_data_rtl8723bs },
|
|
+ { .compatible = "realtek,rtl8723cs-bt",
|
|
+ .data = (const void *)&h5_data_rtl8723bs },
|
|
#endif
|
|
{ },
|
|
};
|
|
--
|
|
2.35.3
|
|
|