diff options
author | Nicholas Sudsgaard <devel+coreboot@nsudsgaard.com> | 2024-11-09 13:38:30 +0000 |
---|---|---|
committer | Felix Singer <service+coreboot-gerrit@felixsinger.de> | 2024-11-10 22:19:35 +0000 |
commit | 88974d3094e760c82ad38d5062551f450a89d3d3 (patch) | |
tree | 1229fad48c5fdaaeb7a7efd3f118a8aa0bb4b93f /src/mainboard | |
parent | cd3a2c9843c8eaa3fcf338265a3f0a7ca107b821 (diff) |
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>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/85076
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Felix Singer <service+coreboot-gerrit@felixsinger.de>
Diffstat (limited to 'src/mainboard')
-rw-r--r-- | src/mainboard/hardkernel/odroid-h4/hda_verb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/hardkernel/odroid-h4/hda_verb.c b/src/mainboard/hardkernel/odroid-h4/hda_verb.c index 0ac706c851..c289cdcecb 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)), |