summaryrefslogtreecommitdiff
path: root/src/mainboard/system76/adl/bootblock.c
diff options
context:
space:
mode:
authorTim Crawford <tcrawford@system76.com>2023-02-06 11:14:57 -0700
committerFelix Held <felix-coreboot@felixheld.de>2023-02-28 17:43:00 +0000
commitf0400e7d3f1bf7e6f8b5fa2ba371a24c39f91b0e (patch)
tree2e0bdcdec2b3e445f3393d698e344cc3baeb1f26 /src/mainboard/system76/adl/bootblock.c
parent9770df1e9dfff99f8e764a56e6f603d4266edfb7 (diff)
mb/system76: Rename adl-p to adl
The directory holds boards other than ADL-P, such as ADL-U and ADL-H. Change-Id: I8e1b67f83d649cd07645a4a519ba1bf2f6f5e7c6 Signed-off-by: Tim Crawford <tcrawford@system76.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/72802 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Jeremy Soller <jeremy@system76.com>
Diffstat (limited to 'src/mainboard/system76/adl/bootblock.c')
-rw-r--r--src/mainboard/system76/adl/bootblock.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/mainboard/system76/adl/bootblock.c b/src/mainboard/system76/adl/bootblock.c
new file mode 100644
index 0000000000..8d06adc9d7
--- /dev/null
+++ b/src/mainboard/system76/adl/bootblock.c
@@ -0,0 +1,9 @@
+/* SPDX-License-Identifier: GPL-2.0-only */
+
+#include <bootblock_common.h>
+#include <mainboard/gpio.h>
+
+void bootblock_mainboard_early_init(void)
+{
+ mainboard_configure_early_gpios();
+}