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