aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAngel Pons <th3fanbus@gmail.com>2021-11-10 17:05:07 +0100
committerPaul Fagerburg <pfagerburg@chromium.org>2021-11-11 22:42:18 +0000
commit67e4ad8edac7ec90204edcb34379b33725628644 (patch)
tree51b495ef7a9604706eddd468486fbf4094e7176a
parentd0f053eb9d6f3013788eb3931cbb5b7f433fa954 (diff)
sb/intel/i82801gx: Program PC BEEP verbs
For consistency with other Intel southbridges, program PC BEEP verbs. None of the boards in the tree using this southbridge provide PC BEEP verbs, so this change makes no difference. Change-Id: I94d24999af819cf3951510586fd4864d1ed3f2f1 Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/59106 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
-rw-r--r--src/southbridge/intel/i82801gx/azalia.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/southbridge/intel/i82801gx/azalia.c b/src/southbridge/intel/i82801gx/azalia.c
index 1f12650c1c..7d4745e9b2 100644
--- a/src/southbridge/intel/i82801gx/azalia.c
+++ b/src/southbridge/intel/i82801gx/azalia.c
@@ -129,6 +129,8 @@ static void codecs_init(struct device *dev, u8 *base, u32 codec_mask)
if (codec_mask & (1 << i))
codec_init(dev, base, i);
}
+
+ azalia_program_verb_table(base, pc_beep_verbs, pc_beep_verbs_size);
}
static void azalia_init(struct device *dev)