aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/clevo/cml-u/bootblock.c
diff options
context:
space:
mode:
authorFelix Singer <felixsinger@posteo.net>2020-12-04 08:56:25 +0100
committerMichael Niewöhner <foss@mniewoehner.de>2020-12-06 11:23:27 +0000
commiteefa32184c8bc3ccb40fe1693abcae527355d961 (patch)
tree1d14d49e5b4f674675ce4a16636fcec9528679a8 /src/mainboard/clevo/cml-u/bootblock.c
parentc07c7c963771b33d9dd94f6962feca04bbeb74d1 (diff)
mb/clevo/cml-u: Move mainboard/gpio.h to variant/gpio.h
Move mainboard/gpio.h to variant/gpio.h and rename its methods to make clear that these methods are implemented on variant level. Change-Id: I1ae9b54ed683000f65323b11747ce3280a1c7f2a Signed-off-by: Felix Singer <felixsinger@posteo.net> Reviewed-on: https://review.coreboot.org/c/coreboot/+/48296 Reviewed-by: Michael Niewöhner <foss@mniewoehner.de> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/clevo/cml-u/bootblock.c')
-rw-r--r--src/mainboard/clevo/cml-u/bootblock.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mainboard/clevo/cml-u/bootblock.c b/src/mainboard/clevo/cml-u/bootblock.c
index d75158cd1f..389a7a986d 100644
--- a/src/mainboard/clevo/cml-u/bootblock.c
+++ b/src/mainboard/clevo/cml-u/bootblock.c
@@ -2,9 +2,9 @@
#include <bootblock_common.h>
#include <gpio.h>
-#include <mainboard/gpio.h>
+#include <variant/gpio.h>
void bootblock_mainboard_init(void)
{
- mainboard_configure_early_gpios();
+ variant_configure_early_gpios();
}