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)
This commit is contained in:
parent
20ec37b80c
commit
02756b8ffb
|
@ -17,7 +17,7 @@
|
||||||
|
|
||||||
const u32 cim_verb_data[] = {
|
const u32 cim_verb_data[] = {
|
||||||
/* coreboot specific header */
|
/* coreboot specific header */
|
||||||
0x19910269, /* Codec Vendor / Device ID: Realtek ALC269 */
|
0x10ec0269, /* Codec Vendor / Device ID: Realtek ALC269 */
|
||||||
0x19910269, /* Subsystem ID */
|
0x19910269, /* Subsystem ID */
|
||||||
0x0000000c, /* Number of jacks (NID entries) */
|
0x0000000c, /* Number of jacks (NID entries) */
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue