aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/clevo/kbl-u/bootblock.c
diff options
context:
space:
mode:
authorFelix Singer <felixsinger@posteo.net>2020-12-04 09:04:14 +0100
committerMichael Niewöhner <foss@mniewoehner.de>2020-12-06 11:23:35 +0000
commit42551478a787dec70d94df22f59c6466f566e07a (patch)
tree505f62e70c4b7e12d07452e2aea7fe2030f0b14b /src/mainboard/clevo/kbl-u/bootblock.c
parenteefa32184c8bc3ccb40fe1693abcae527355d961 (diff)
mb/clevo/kbl-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: Ibcb6322067285984bad70761fce34cfcb6ed8e0f Signed-off-by: Felix Singer <felixsinger@posteo.net> Reviewed-on: https://review.coreboot.org/c/coreboot/+/48297 Reviewed-by: Michael Niewöhner <foss@mniewoehner.de> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/clevo/kbl-u/bootblock.c')
-rw-r--r--src/mainboard/clevo/kbl-u/bootblock.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mainboard/clevo/kbl-u/bootblock.c b/src/mainboard/clevo/kbl-u/bootblock.c
index 067c9ecab2..8f085bee98 100644
--- a/src/mainboard/clevo/kbl-u/bootblock.c
+++ b/src/mainboard/clevo/kbl-u/bootblock.c
@@ -1,9 +1,9 @@
/* SPDX-License-Identifier: GPL-2.0-only */
#include <bootblock_common.h>
-#include <mainboard/gpio.h>
+#include <variant/gpio.h>
void bootblock_mainboard_early_init(void)
{
- mainboard_configure_gpios();
+ variant_configure_gpios();
}