mirror of
https://github.com/armbian/build.git
synced 2025-08-15 23:56:57 +02:00
* main source for driver and patches are sunxi64 megous patches * move into patch/misc/wireless-rtl8723cs directory * integrate with minor patches from rk322x/rockchip64 families * update drivers_network.sh to apply patches in same order as before * remove references from patches.megous and series.conf in sunxi64 * remove patches from rk322x and rockchip64 family patches * do not touch kernel archives older than 6.1
32 lines
1.0 KiB
Diff
32 lines
1.0 KiB
Diff
From 59bac57a5f727d9fba16789297983c788925b561 Mon Sep 17 00:00:00 2001
|
|
From: Vasily Khoruzhick <anarsoul@gmail.com>
|
|
Date: Wed, 31 Oct 2018 20:07:41 -0700
|
|
Subject: [PATCH 185/389] 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 <megi@xff.cz>
|
|
---
|
|
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 c5a0409ef84f..0ff9d8477e85 100644
|
|
--- a/drivers/bluetooth/hci_h5.c
|
|
+++ b/drivers/bluetooth/hci_h5.c
|
|
@@ -1102,6 +1102,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
|
|
|