diff options
author | marxwang <marx.wang@intel.com> | 2018-10-02 10:43:40 +0800 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2018-10-04 09:42:15 +0000 |
commit | 723e736db972c6fb012517e82bc5815fa09eb0da (patch) | |
tree | ba8aa095c4a5028c9b23ecb99832708bd0d9040d /src/mainboard/google | |
parent | a8da35440bc2d6bc7c7e859a7d404917762ff13c (diff) |
mb/google/poppy/variants/rammus: Shorten oem_table_id to RAMMUS
This patch modifies "oem_table_id" from "RAMMUSMAX" to "RAMMUS"
so that the audio topology file can be loaded properly by the
operating system.
BUG=b:112945714
BRANCH=master
TEST=There is no error message like "failed to load topology firmware" in
kernel v4.4 log.
Change-Id: I66a38ea38791dd3d9606a05b7b696236c350237f
Signed-off-by: Marx Wang <marx.wang@intel.com>
Reviewed-on: https://review.coreboot.org/28870
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Furquan Shaikh <furquan@google.com>
Diffstat (limited to 'src/mainboard/google')
-rw-r--r-- | src/mainboard/google/poppy/variants/rammus/nhlt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/google/poppy/variants/rammus/nhlt.c b/src/mainboard/google/poppy/variants/rammus/nhlt.c index 70c2524400..efa08ee213 100644 --- a/src/mainboard/google/poppy/variants/rammus/nhlt.c +++ b/src/mainboard/google/poppy/variants/rammus/nhlt.c @@ -38,6 +38,6 @@ void variant_nhlt_oem_overrides(const char **oem_id, const char **oem_table_id, uint32_t *oem_revision) { *oem_id = "GOOGLE"; - *oem_table_id = "RAMMUSMAX"; + *oem_table_id = "RAMMUS"; *oem_revision = 0; } |