You are not logged in.
I bought laptop recently and bluetooth and mic werent working. I made two simple patches:
*** a/sound/soc/amd/yc/acp6x-mach.c
--- b/sound/soc/amd/yc/acp6x-mach.c
@@ -663,0 +663,7 @@
+ {
+ .driver_data = &acp6x_card,
+ .matches = {
+ DMI_MATCH(DMI_BOARD_VENDOR, "HONOR"),
+ DMI_MATCH(DMI_PRODUCT_NAME, "GOH-X"),
+ }
+ },*** a/drivers/bluetooth/btusb.c
--- b/drivers/bluetooth/btusb.c
@@ -622,0 +622,2 @@
+ { USB_DEVICE(0x0489, 0xe158), .driver_info = BTUSB_MEDIATEK |
+ BTUSB_WIDEBAND_SPEECH },How do i request to include them into the kernel?
Last edited by Bluecross (2025-12-07 21:20:07)
Offline
Nice, good job on writing the patch!
The process of submitting changes to the kernel codebase is quite well-documented, although it can be quite confusing at times:
https://www.kernel.org/doc/html/latest/ … tches.html
If you have any questions about this or need guidance in the process feel free to reach out, I'm happy to help!
Offline
For the most part I am not qualified to comment, though.
That looks goods. There's all sort of ARM boards being supported in the kernel nowadays. And, honestly, a lot of them are pretty random. I don't see why there would be a problem adding your sound card cards and Bluetooth chip?
Offline
Looks like both patches will be included in the kernel soon :3
https://git.kernel.org/pub/scm/linux/ke … dd35acffeb
https://git.kernel.org/pub/scm/linux/ke … 6a6fd8cb4e
Offline
Doesn't look like something you'd have to report
Offline