summaryrefslogtreecommitdiff
path: root/src/mainboard/amd/olivehill/mainboard.c
blob: 221e52a1edd10a7f3b28346d333dd354438c752e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* SPDX-License-Identifier: GPL-2.0-only */

#include <device/device.h>

/**********************************************
 * enable the dedicated function in mainboard.
 **********************************************/
static void mainboard_enable(struct device *dev)
{
}

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