diff options
author | Tim Crawford <tcrawford@system76.com> | 2021-10-27 17:52:35 -0600 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2021-11-02 19:22:05 +0000 |
commit | 0893b871c6335ffb2639415b419b2523a0d51c68 (patch) | |
tree | 02ecf25baa270c3d80088265c6fa8a685715f2c3 /src/mainboard/system76/gaze15/bootblock.c | |
parent | c840bc4e322189244d3c71f27f1558d7a842a782 (diff) |
mb/system76/gaze15: Convert to variant setup
Change-Id: I6d8a97d71ff3b4408f5e11230ed3ff00357f7123
Signed-off-by: Tim Crawford <tcrawford@system76.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/58675
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'src/mainboard/system76/gaze15/bootblock.c')
-rw-r--r-- | src/mainboard/system76/gaze15/bootblock.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mainboard/system76/gaze15/bootblock.c b/src/mainboard/system76/gaze15/bootblock.c index ae416b4e77..b351fbd8ef 100644 --- a/src/mainboard/system76/gaze15/bootblock.c +++ b/src/mainboard/system76/gaze15/bootblock.c @@ -1,10 +1,9 @@ /* SPDX-License-Identifier: GPL-2.0-only */ #include <bootblock_common.h> -#include <gpio.h> -#include <mainboard/gpio.h> +#include <variant/gpio.h> void bootblock_mainboard_early_init(void) { - mainboard_configure_early_gpios(); + variant_configure_early_gpios(); } |