aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/clevo/kbl-u/ramstage.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/ramstage.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/ramstage.c')
-rw-r--r--src/mainboard/clevo/kbl-u/ramstage.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mainboard/clevo/kbl-u/ramstage.c b/src/mainboard/clevo/kbl-u/ramstage.c
index 9368021e7f..e34d5002bf 100644
--- a/src/mainboard/clevo/kbl-u/ramstage.c
+++ b/src/mainboard/clevo/kbl-u/ramstage.c
@@ -1,7 +1,7 @@
/* SPDX-License-Identifier: GPL-2.0-only */
#include <device/device.h>
-#include <mainboard/gpio.h>
+#include <variant/gpio.h>
/*
* TODO:
@@ -14,7 +14,7 @@
static void init_mainboard(void *chip_info)
{
- mainboard_configure_gpios();
+ variant_configure_gpios();
}
struct chip_operations mainboard_ops = {