summaryrefslogtreecommitdiff
path: root/src/mainboard/intel/wtm2
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2019-08-17 05:28:38 +0300
committerKyösti Mälkki <kyosti.malkki@gmail.com>2019-08-19 00:03:37 +0000
commit9c5a9bba8e58e2af4af7e36ae22d00a11cfd532d (patch)
tree5bfac184634bf0fcb4b78dd7be2f8ac99dbb7203 /src/mainboard/intel/wtm2
parent157b189f6b97b6e9ecd8d29edbbd045fbbc231f5 (diff)
downloadcoreboot-9c5a9bba8e58e2af4af7e36ae22d00a11cfd532d.tar.xz
mainboard/google: Remove use of __PRE_RAM__
Change-Id: I2ebeb393e4a5a4bfac8a37a877d067aca484ca2e Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/34927 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Furquan Shaikh <furquan@google.com>
Diffstat (limited to 'src/mainboard/intel/wtm2')
-rw-r--r--src/mainboard/intel/wtm2/chromeos.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/mainboard/intel/wtm2/chromeos.c b/src/mainboard/intel/wtm2/chromeos.c
index 802221446d..556677acb6 100644
--- a/src/mainboard/intel/wtm2/chromeos.c
+++ b/src/mainboard/intel/wtm2/chromeos.c
@@ -14,6 +14,7 @@
*/
#include <bootmode.h>
+#include <boot/coreboot_tables.h>
#include <device/device.h>
#include <device/pci.h>
#include <soc/gpio.h>
@@ -22,9 +23,6 @@
/* Compile-time settings for recovery mode. */
#define REC_MODE_SETTING 0
-#ifndef __PRE_RAM__
-#include <boot/coreboot_tables.h>
-
void fill_lb_gpios(struct lb_gpios *gpios)
{
struct lb_gpio chromeos_gpios[] = {
@@ -35,7 +33,6 @@ void fill_lb_gpios(struct lb_gpios *gpios)
};
lb_add_gpios(gpios, chromeos_gpios, ARRAY_SIZE(chromeos_gpios));
}
-#endif
int get_recovery_mode_switch(void)
{