diff options
author | Angel Pons <th3fanbus@gmail.com> | 2019-12-19 19:44:11 +0100 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2020-01-02 14:26:33 +0000 |
commit | d8ce9a8de1183700843f623ddead8d5b83f5a4c4 (patch) | |
tree | 45ce227404c96b868df018b0a25045691b681bac /src/mainboard/kontron | |
parent | ec21170b876fc6af00141e409bba83d958dc3c6e (diff) |
mb/**/hda_verb.c: Correct codec ID on subvendor verbs
Looks like the subvendor verb for codec #3 is erroneously using zero as
its codec number. Fix that.
Change-Id: I760533c229287627dd0548a06300c376e045302c
Signed-off-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/37850
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Matt DeVillier <matt.devillier@gmail.com>
Diffstat (limited to 'src/mainboard/kontron')
-rw-r--r-- | src/mainboard/kontron/ktqm77/hda_verb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/kontron/ktqm77/hda_verb.c b/src/mainboard/kontron/ktqm77/hda_verb.c index d612f37ccf..9935ca498e 100644 --- a/src/mainboard/kontron/ktqm77/hda_verb.c +++ b/src/mainboard/kontron/ktqm77/hda_verb.c @@ -100,7 +100,7 @@ const u32 cim_verb_data[] = { 0x00000004, /* Number of jacks */ /* NID 0x01, HDA Codec Subsystem ID Verb Table: 0x80860101 */ - AZALIA_SUBVENDOR(0, 0x80860101), + AZALIA_SUBVENDOR(3, 0x80860101), /* Pin Complex (NID 0x05) Digital Out at Int HDMI */ AZALIA_PIN_CFG(3, 0x05, 0x58560010), |