blob: 8408a912f721629f801cf9395094b489d7ccba05 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */
#include <device/device.h>
static void mainboard_init(void *chip_info)
{
/* Nothing Here Yet */
}
struct chip_operations mainboard_ops = {
.init = mainboard_init,
};
|