blob: f056fc487770a0265537f52f6259fb895170281d (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* This file is part of the coreboot project. */
/* SPDX-License-Identifier: GPL-2.0-only */
#include <bootblock_common.h>
#include "board.h"
void bootblock_mainboard_init(void)
{
setup_chromeos_gpios();
}
|