Nicholas Sudsgaard has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/85076?usp=email )
Change subject: mb/hardkernel/odroid-h4: Correct number of jacks in hda_verb.c ......................................................................
mb/hardkernel/odroid-h4: Correct number of jacks in hda_verb.c
This was found due to the `_Static_assert()` from CB:84360 failing.
Change-Id: I401e94b107612f8b7e8a73b3dbc12d7a5227ef01 Signed-off-by: Nicholas Sudsgaard devel+coreboot@nsudsgaard.com --- M src/mainboard/hardkernel/odroid-h4/hda_verb.c 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/76/85076/1
diff --git a/src/mainboard/hardkernel/odroid-h4/hda_verb.c b/src/mainboard/hardkernel/odroid-h4/hda_verb.c index 0ac706c..c289cdc 100644 --- a/src/mainboard/hardkernel/odroid-h4/hda_verb.c +++ b/src/mainboard/hardkernel/odroid-h4/hda_verb.c @@ -5,7 +5,7 @@ const u32 cim_verb_data[] = { 0x10ec0897, /* Vendor ID: Realtek ALC897 */ 0x10ec0897, /* Subsystem ID */ - 16, /* Number of entries */ + 15, /* Number of entries */ AZALIA_SUBVENDOR(0, 0x10ec0897), AZALIA_PIN_CFG(0, 0x11, 0x40000000), AZALIA_PIN_CFG(0, 0x12, AZALIA_PIN_CFG_NC(0)),