aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/google/fizz/variants/endeavour
diff options
context:
space:
mode:
authorJeff Chase <jnchase@google.com>2020-06-04 17:24:59 -0400
committerPatrick Georgi <pgeorgi@google.com>2020-06-14 16:43:05 +0000
commitad1a835c694954a103e3b023c89bb0892a30497c (patch)
tree1861be80757850c0d51acc233cbf57174bb8f191 /src/mainboard/google/fizz/variants/endeavour
parent3380faa283cf2c58a9d1c1170549e9a34969eb45 (diff)
mb/google/fizz: add variant chipset display init
The Endeavour variant does not have a DisplayPort input so there's no need to wait for it. BUG=b:147830399 BRANCH=none TEST=boot endeavour; check coreboot logs Signed-off-by: Jeff Chase <jnchase@google.com> Change-Id: I30c7c47f19a61ce66c6c923864d80870d2761859 Reviewed-on: https://review.coreboot.org/c/coreboot/+/42085 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Shelley Chen <shchen@google.com>
Diffstat (limited to 'src/mainboard/google/fizz/variants/endeavour')
-rw-r--r--src/mainboard/google/fizz/variants/endeavour/Makefile.inc2
-rw-r--r--src/mainboard/google/fizz/variants/endeavour/board.c (renamed from src/mainboard/google/fizz/variants/endeavour/nhlt.c)5
2 files changed, 6 insertions, 1 deletions
diff --git a/src/mainboard/google/fizz/variants/endeavour/Makefile.inc b/src/mainboard/google/fizz/variants/endeavour/Makefile.inc
index 0ad298b5f4..ded8a3572a 100644
--- a/src/mainboard/google/fizz/variants/endeavour/Makefile.inc
+++ b/src/mainboard/google/fizz/variants/endeavour/Makefile.inc
@@ -1,4 +1,4 @@
bootblock-y += gpio.c
ramstage-y += gpio.c
-ramstage-y += nhlt.c
+ramstage-y += board.c
diff --git a/src/mainboard/google/fizz/variants/endeavour/nhlt.c b/src/mainboard/google/fizz/variants/endeavour/board.c
index 0395a84d8f..0fdc914cf8 100644
--- a/src/mainboard/google/fizz/variants/endeavour/nhlt.c
+++ b/src/mainboard/google/fizz/variants/endeavour/board.c
@@ -12,3 +12,8 @@ void variant_nhlt_oem_overrides(const char **oem_id,
*oem_table_id = "ENDEAVOUR";
*oem_revision = 0;
}
+
+void variant_chip_display_init(void)
+{
+
+}