Elyes Haouas has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/69330 )
Change subject: mb/lenovo/w541: Clean up includes ......................................................................
mb/lenovo/w541: Clean up includes
Change-Id: I659412f7788cb4bee6c8f639518dfb707803d1d7 Signed-off-by: Elyes Haouas ehaouas@noos.fr --- M src/mainboard/lenovo/haswell/variants/w541/hda_verb.c M src/mainboard/lenovo/haswell/variants/w541/romstage.c 2 files changed, 14 insertions(+), 4 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/30/69330/1
diff --git a/src/mainboard/lenovo/haswell/variants/w541/hda_verb.c b/src/mainboard/lenovo/haswell/variants/w541/hda_verb.c index f99c393..2d7195b 100644 --- a/src/mainboard/lenovo/haswell/variants/w541/hda_verb.c +++ b/src/mainboard/lenovo/haswell/variants/w541/hda_verb.c @@ -1,6 +1,7 @@ /* SPDX-License-Identifier: GPL-2.0-only */
#include <device/azalia_device.h> +#include <stdint.h>
const u32 cim_verb_data[] = { 0x10ec0292, /* Codec Vendor / Device ID: Realtek ALC292 */ diff --git a/src/mainboard/lenovo/haswell/variants/w541/romstage.c b/src/mainboard/lenovo/haswell/variants/w541/romstage.c index 4a189d4..a8e3913 100644 --- a/src/mainboard/lenovo/haswell/variants/w541/romstage.c +++ b/src/mainboard/lenovo/haswell/variants/w541/romstage.c @@ -1,12 +1,11 @@ /* SPDX-License-Identifier: GPL-2.0-only */
-#include <stdint.h> +#include <device/pci_ops.h> +#include <ec/lenovo/pmh7/pmh7.h> #include <northbridge/intel/haswell/haswell.h> #include <northbridge/intel/haswell/raminit.h> #include <southbridge/intel/lynxpoint/pch.h> -#include <option.h> -#include <ec/lenovo/pmh7/pmh7.h> -#include <device/pci_ops.h> +#include <stdint.h>
void mb_get_spd_map(struct spd_info *spdi) {