blob: 0ba29c45a2b51d2cbafd645c6bf2940c6a2ee909 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* SPDX-License-Identifier: GPL-2.0-only */
#include <device/device.h>
static void mainboard_init(void *chip_info)
{
/* Nothing Here Yet */
}
struct chip_operations mainboard_ops = {
.init = mainboard_init,
};
|