summaryrefslogtreecommitdiff
path: root/src/drivers
diff options
context:
space:
mode:
authorEric Lai <ericr_lai@compal.corp-partner.google.com>2021-03-11 17:50:22 +0800
committerPatrick Georgi <pgeorgi@google.com>2021-03-15 06:21:20 +0000
commit8da56e6e75443ea6a6e2f0f883cf8d01cf48a02c (patch)
treea0be0c6317bdfb59e669108f12d4b8bd3bdafc94 /src/drivers
parentd8e6d3e2307b4531767462ef6359da028cf11218 (diff)
downloadcoreboot-8da56e6e75443ea6a6e2f0f883cf8d01cf48a02c.tar.xz
drivers/generic/alc1015: Change HID name for driver
From ALSA reviewer suggest to change the name to RTL1015. Details in below threads: https://www.spinics.net/lists/alsa-devel/msg123395.html BUG=b:177971830 TEST=: ALC1015P driver can probe properly. Signed-off-by: Eric Lai <ericr_lai@compal.corp-partner.google.com> Change-Id: I2762852bdc3164346e3618c373aa4d3336415653 Reviewed-on: https://review.coreboot.org/c/coreboot/+/51407 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Furquan Shaikh <furquan@google.com> Reviewed-by: Tim Wawrzynczak <twawrzynczak@chromium.org>
Diffstat (limited to 'src/drivers')
-rw-r--r--src/drivers/generic/alc1015/alc1015.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/drivers/generic/alc1015/alc1015.c b/src/drivers/generic/alc1015/alc1015.c
index f698b5f5d3..920b8af4bc 100644
--- a/src/drivers/generic/alc1015/alc1015.c
+++ b/src/drivers/generic/alc1015/alc1015.c
@@ -25,7 +25,7 @@ static void alc1015_fill_ssdt(const struct device *dev)
acpigen_write_scope(scope);
acpigen_write_device(name);
- acpigen_write_name_string("_HID", "ALCP1015");
+ acpigen_write_name_string("_HID", "RTL1015");
acpigen_write_name_integer("_UID", 0);
acpigen_write_name_string("_DDN", dev->chip_ops->name);
acpigen_write_STA(acpi_device_status(dev));