aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/msi/ms7d25/mainboard.c
blob: ac6b252323df3f45d62bda5344d1e762fd8f6dd8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* SPDX-License-Identifier: GPL-2.0-only */

#include <device/device.h>

static void mainboard_init(void *chip_info)
{

}

static void mainboard_enable(struct device *dev)
{

}

struct chip_operations mainboard_ops = {
	.init = mainboard_init,
	.enable_dev = mainboard_enable,
};