diff options
author | Nicholas Sudsgaard <devel+coreboot@nsudsgaard.com> | 2024-02-12 15:43:31 +0900 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2024-02-13 20:11:24 +0000 |
commit | 867061191944b86829a0cc981f36682b34c519ac (patch) | |
tree | 23178dfd4400b927e2065884672971c68ffe41d7 /src/mainboard/gigabyte | |
parent | 32ea6bb1f94e3e669389749b596aec860098e08c (diff) |
mainboard: Enforce usage of AZALIA_ARRAY_SIZES
This is the de facto method and should be enforced to keep things
consistent.
Change-Id: I7eee77f7fd49bc38e27cb0e6be0a4a6555098cc7
Signed-off-by: Nicholas Sudsgaard <devel+coreboot@nsudsgaard.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/80422
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Diffstat (limited to 'src/mainboard/gigabyte')
-rw-r--r-- | src/mainboard/gigabyte/ga-g41m-es2l/hda_verb.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mainboard/gigabyte/ga-g41m-es2l/hda_verb.c b/src/mainboard/gigabyte/ga-g41m-es2l/hda_verb.c index 75a08640a5..a867258b22 100644 --- a/src/mainboard/gigabyte/ga-g41m-es2l/hda_verb.c +++ b/src/mainboard/gigabyte/ga-g41m-es2l/hda_verb.c @@ -28,5 +28,4 @@ const u32 cim_verb_data[] = { const u32 pc_beep_verbs[0] = {}; -const u32 pc_beep_verbs_size = ARRAY_SIZE(pc_beep_verbs); -const u32 cim_verb_data_size = ARRAY_SIZE(cim_verb_data); +AZALIA_ARRAY_SIZES; |