diff options
author | Youness Alaoui <kakaroto@kakaroto.homelinux.net> | 2017-02-15 12:52:50 -0500 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2017-02-22 22:26:35 +0100 |
commit | 02756b8ffb96bc84c1a60db6d0b8d77d111e3956 (patch) | |
tree | 047501c71ee3b310d287002a21baaeb9a4283812 | |
parent | 20ec37b80cc6fcc8b38939bad54f26bf3bdd2fea (diff) | |
download | coreboot-02756b8ffb96bc84c1a60db6d0b8d77d111e3956.tar.xz |
purism/librem13: Fix HDA codec verbs. Use correct codec vendor id
There was a 'typo' where the subsystem id was set instead of the codec
vendor id. This caused the lynxpoint HDA codecs init to fail to find
the proper codecid verbs so codecs were never initialized. That caused
the headphones jack to not work.
Change-Id: I975031643fc42937ecaea2300639b90632543f67
Signed-off-by: Youness Alaoui <youness.alaoui@puri.sm>
Reviewed-on: https://review.coreboot.org/18411
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Tested-by: build bot (Jenkins)
-rw-r--r-- | src/mainboard/purism/librem13/hda_verb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/purism/librem13/hda_verb.c b/src/mainboard/purism/librem13/hda_verb.c index f553df6aa0..958a9391af 100644 --- a/src/mainboard/purism/librem13/hda_verb.c +++ b/src/mainboard/purism/librem13/hda_verb.c @@ -17,7 +17,7 @@ const u32 cim_verb_data[] = { /* coreboot specific header */ - 0x19910269, /* Codec Vendor / Device ID: Realtek ALC269 */ + 0x10ec0269, /* Codec Vendor / Device ID: Realtek ALC269 */ 0x19910269, /* Subsystem ID */ 0x0000000c, /* Number of jacks (NID entries) */ |