mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-12 14:56:53 +02:00
26 lines
854 B
Diff
26 lines
854 B
Diff
From 4e85858c9a2217f93b34fd767488de2123f99fea Mon Sep 17 00:00:00 2001
|
|
From: Patrick Yavitz <pyavitz@xxxxx.com>
|
|
Date: Wed, 26 Jun 2024 06:01:30 -0400
|
|
Subject: [PATCH] Bluetooth: hci_h5: Add support for RTL8852BS
|
|
|
|
Signed-off-by: Patrick Yavitz <pyavitz@xxxxx.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 e90670955df2..a05ab0c37e81 100644
|
|
--- a/drivers/bluetooth/hci_h5.c
|
|
+++ b/drivers/bluetooth/hci_h5.c
|
|
@@ -1106,6 +1106,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,rtl8852bs-bt",
|
|
+ .data = (const void *)&h5_data_rtl8723bs },
|
|
#endif
|
|
{ },
|
|
};
|
|
--
|
|
2.39.2
|
|
|