diff options
author | Sean Rhodes <sean@starlabs.systems> | 2023-04-05 22:09:15 +0100 |
---|---|---|
committer | Martin L Roth <gaumless@gmail.com> | 2023-04-28 15:38:00 +0000 |
commit | 4c98dfb4e3c3e133411a6c857b33e383a4f250d7 (patch) | |
tree | 6573965d26eebb12a78ef72977974dd2df28bf9b /src/mainboard/starlabs | |
parent | c45cfadf367048d8b49291986288ab3645a03d92 (diff) |
mb/starlabs/starbook/adl: Correct the number of NID entries
The number of NID entries was too high for the Realtek
and Intel sound cards, preventing the verb table from
loading. Now the values are correct; it loads as intended.
Signed-off-by: Sean Rhodes <sean@starlabs.systems>
Change-Id: I79825313a4801c120a0a2a321cbabab7c728aa71
Reviewed-on: https://review.coreboot.org/c/coreboot/+/74241
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Matt DeVillier <matt.devillier@gmail.com>
Diffstat (limited to 'src/mainboard/starlabs')
-rw-r--r-- | src/mainboard/starlabs/starbook/variants/adl/hda_verb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mainboard/starlabs/starbook/variants/adl/hda_verb.c b/src/mainboard/starlabs/starbook/variants/adl/hda_verb.c index a234de1810..c2d10ed324 100644 --- a/src/mainboard/starlabs/starbook/variants/adl/hda_verb.c +++ b/src/mainboard/starlabs/starbook/variants/adl/hda_verb.c @@ -7,7 +7,7 @@ const u32 cim_verb_data[] = { /* coreboot specific header */ 0x10ec0269, /* Codec Vendor / Device ID: Realtek ALC269 */ 0x1e507007, /* Subsystem ID */ - 36, /* Number of jacks (NID entries) */ + 17, /* Number of jacks (NID entries) */ /* Reset Codec First */ AZALIA_RESET(0x1), @@ -54,7 +54,7 @@ const u32 cim_verb_data[] = { 0x80862815, /* Codec Vendor / Device ID: Intel */ 0x80860101, /* Subsystem ID */ - 9, /* Number of 4 dword sets */ + 10, /* Number of 4 dword sets */ AZALIA_SUBVENDOR(2, 0x80860101), |