summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKeith Hui <buurin@gmail.com>2023-10-27 00:07:50 -0400
committerFelix Held <felix-coreboot@felixheld.de>2023-11-14 22:36:56 +0000
commit329786c0ba0aa0b22b9c42d4c8bcb8da39a1a61d (patch)
tree7387873518cacf18b4d149ee9830e721e1b788d4 /src
parentcf895449c1e0a4fa416d741fe6613498b9f0a095 (diff)
downloadcoreboot-329786c0ba0aa0b22b9c42d4c8bcb8da39a1a61d.tar.gz
coreboot-329786c0ba0aa0b22b9c42d4c8bcb8da39a1a61d.tar.bz2
coreboot-329786c0ba0aa0b22b9c42d4c8bcb8da39a1a61d.zip
mb/lenovo/t530/early_init.c: Drop unused and revise used includes
With commit adaeb1102186 (nb/intel/sandybridge: Clean up post Haswell SPD mapping API migration), raminit_native.h now only includes 4 other headers and offers no original content. Based on the idea that all source files should include what they use directly, drop it in favor of sandybridge.h (which it already includes anyway) and types.h (replacing stdint.h because it also uses boolean constructs). Board appears to not use anything sb/intel/bd82x6x/pch.h provides. And the board still builds after dropping it. Change-Id: I1b201fe4dd29bac5feb08f372d1e36353eac161d Signed-off-by: Keith Hui <buurin@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/78783 Reviewed-by: Martin L Roth <gaumless@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src')
-rw-r--r--src/mainboard/lenovo/t530/early_init.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/mainboard/lenovo/t530/early_init.c b/src/mainboard/lenovo/t530/early_init.c
index 498341001513..b6bfa5ffe551 100644
--- a/src/mainboard/lenovo/t530/early_init.c
+++ b/src/mainboard/lenovo/t530/early_init.c
@@ -1,10 +1,8 @@
/* SPDX-License-Identifier: GPL-2.0-only */
-#include <stdint.h>
+#include <types.h>
#include <device/pci_ops.h>
#include <device/pci_def.h>
-#include <northbridge/intel/sandybridge/raminit_native.h>
-#include <southbridge/intel/bd82x6x/pch.h>
#include <northbridge/intel/sandybridge/sandybridge.h>
#include <drivers/lenovo/hybrid_graphics/hybrid_graphics.h>
#include <device/device.h>