src/: Replace GPL boilerplate with SPDX headers
[coreboot.git] / src / mainboard / biostar / a68n_5200 / mainboard.c
blob963f8949f31a1043b592153c420e814e833985b6
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,