blob: 11186f775c88adf7ea531366c30319b9bb8ade6b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/*
* This file is part of the coreboot project.
*
* Copyright 2020 The coreboot project Authors.
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include <bootblock_common.h>
void bootblock_mainboard_init(void)
{
/* TODO: Perform mainboard initialization */
}
|