1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /* This file is part of the coreboot project. */
4 #include <console/console.h>
5 #include <device/device.h>
7 /**********************************************
8 * enable the dedicated function in mainboard.
9 **********************************************/
10 static void mainboard_enable(struct device
*dev
)
12 printk(BIOS_INFO
, "Mainboard " CONFIG_MAINBOARD_PART_NUMBER
" Enable.\n");
15 struct chip_operations mainboard_ops
= {
16 .enable_dev
= mainboard_enable
,