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

#include <console/console.h>
#include <device/device.h>

/*************************************************
 * enable the dedicated function in parmer board.
 *************************************************/
static void mainboard_enable(struct device *dev)
{
	printk(BIOS_INFO, "Mainboard " CONFIG_MAINBOARD_PART_NUMBER " Enable.\n");
}

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