10 lines
222 B
C
10 lines
222 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
|
|
#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));
|
|
}
|