summaryrefslogtreecommitdiffstats
path: root/src/mainboard/system76/lemp9/bootblock.c
blob: b5919321500cf4592ffee16f427e315a2eae4373 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */

#include <bootblock_common.h>
#include <gpio.h>
#include "gpio.h"

void bootblock_mainboard_init(void)
{
	gpio_configure_pads(early_gpio_table, ARRAY_SIZE(early_gpio_table));
}