summaryrefslogtreecommitdiffstats
path: root/src/mainboard/portwell/m107/mainboard.c
blob: c3412b4a86dbe376c93b188621985a2b54a08da6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* SPDX-License-Identifier: GPL-2.0-only */

#include <device/device.h>

/*
 * mainboard_enable is executed as first thing after
 * enumerate_buses().
 */
static void mainboard_enable(struct device *dev)
{
}

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