Hello Felix Singer, Nico Huber, Arthur Heymans, Michael Niewöhner, Patrick Rudolph,
I'd like you to do a code review. Please visit
https://review.coreboot.org/c/coreboot/+/48360
to review the following change.
Change subject: mb/intel/coffeelake_rvp/var/cfl_u: Add empty verb table ......................................................................
mb/intel/coffeelake_rvp/var/cfl_u: Add empty verb table
The code in soc/intel/common is rather messy, so there's no easy way to conditionally build a verb table with the changes that follow this one.
Change-Id: I00d968563539a4e1b8d1e12145293439d8358555 Signed-off-by: Angel Pons th3fanbus@gmail.com --- A src/mainboard/intel/coffeelake_rvp/variants/cfl_u/hda_verb.h 1 file changed, 19 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/60/48360/1
diff --git a/src/mainboard/intel/coffeelake_rvp/variants/cfl_u/hda_verb.h b/src/mainboard/intel/coffeelake_rvp/variants/cfl_u/hda_verb.h new file mode 100644 index 0000000..d4c6273 --- /dev/null +++ b/src/mainboard/intel/coffeelake_rvp/variants/cfl_u/hda_verb.h @@ -0,0 +1,19 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ + +#ifndef HDA_VERB_H +#define HDA_VERB_H + +#include <device/azalia_device.h> + +const u32 cim_verb_data[] = { + /* VerbTable: CFL Display Audio Codec */ + 0x8086280b, + 0xffffffff, + 0, +}; + +const u32 pc_beep_verbs[] = { +}; + +AZALIA_ARRAY_SIZES; +#endif