diff options
author | Nicholas Sudsgaard <devel+coreboot@nsudsgaard.com> | 2024-09-18 14:21:21 +0000 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2024-09-19 16:10:45 +0000 |
commit | ec3a0d674e0636b9323b257a89a74fc20cb043d9 (patch) | |
tree | bcba06ac41039aa3560d41dc6f243a4e93277e37 /src/mainboard/gigabyte | |
parent | e4084aa96bec01f7fc7f5d49a7dff18870218d40 (diff) |
mb/gigabyte/ga-945gcm-s2l: Correct number of jacks in hda_verb.c
This was found due to the `_Static_assert()` from CB:84360 failing.
Change-Id: I01db9dad872cd4c9238b6c6aac73f3e6367710a4
Signed-off-by: Nicholas Sudsgaard <devel+coreboot@nsudsgaard.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/84416
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Diffstat (limited to 'src/mainboard/gigabyte')
-rw-r--r-- | src/mainboard/gigabyte/ga-945gcm-s2l/hda_verb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/gigabyte/ga-945gcm-s2l/hda_verb.c b/src/mainboard/gigabyte/ga-945gcm-s2l/hda_verb.c index 6663b160b7..654af3a86d 100644 --- a/src/mainboard/gigabyte/ga-945gcm-s2l/hda_verb.c +++ b/src/mainboard/gigabyte/ga-945gcm-s2l/hda_verb.c @@ -6,7 +6,7 @@ const u32 cim_verb_data[] = { /* coreboot specific header */ 0x10ec0662, /* Vendor ID */ 0x1458a002, /* Subsystem ID */ - 0x00000009, /* Number of entries */ + 10, /* Number of entries */ /* Pin Widget Verb Table */ AZALIA_PIN_CFG(0, 0x14, 0x01014010), |