11 lines
204 B
C
11 lines
204 B
C
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
||
|
|
||
|
#include <bootblock_common.h>
|
||
|
#include <gpio.h>
|
||
|
#include <mainboard/gpio.h>
|
||
|
|
||
|
void bootblock_mainboard_early_init(void)
|
||
|
{
|
||
|
mainboard_configure_early_gpios();
|
||
|
}
|