summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMichael Niewöhner <foss@mniewoehner.de>2020-12-21 18:19:52 +0100
committerMichael Niewöhner <foss@mniewoehner.de>2020-12-22 13:44:16 +0000
commit490120e1bbb129a8eb6aaed8d45b22cc91d21bed (patch)
tree502935a99b8400bd23ece5b3cf54043893a64fb5 /src
parentb2a749d4acc25ddf07f754f8c95e48e809b7f425 (diff)
downloadcoreboot-490120e1bbb129a8eb6aaed8d45b22cc91d21bed.tar.gz
coreboot-490120e1bbb129a8eb6aaed8d45b22cc91d21bed.tar.bz2
coreboot-490120e1bbb129a8eb6aaed8d45b22cc91d21bed.zip
mb/clevo/cml-u: move gpio early init to bootblock_mainboard_early_init
Move gpio early init to bootblock_mainboard_early_init to make the bootblock console work as early as possible. Change-Id: I619f7d0e15adae284b606dd20c3c1f04f3eafd7b Signed-off-by: Michael Niewöhner <foss@mniewoehner.de> Reviewed-on: https://review.coreboot.org/c/coreboot/+/48801 Reviewed-by: Felix Singer <felixsinger@posteo.net> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src')
-rw-r--r--src/mainboard/clevo/cml-u/bootblock.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/clevo/cml-u/bootblock.c b/src/mainboard/clevo/cml-u/bootblock.c
index 389a7a986dda..0b5965a90501 100644
--- a/src/mainboard/clevo/cml-u/bootblock.c
+++ b/src/mainboard/clevo/cml-u/bootblock.c
@@ -4,7 +4,7 @@
#include <gpio.h>
#include <variant/gpio.h>
-void bootblock_mainboard_init(void)
+void bootblock_mainboard_early_init(void)
{
variant_configure_early_gpios();
}