tree: drop last paragraph of GPL copyright header
[coreboot.git] / src / mainboard / aaeon / pfm-540i_revb / mainboard.c
blob6f253dd94844e4ed248df59f2e2f3040eed01bb4
1 /*
2 * This file is part of the coreboot project.
4 * Copyright (C) 2011 Mark Norman <mpnorman@gmail.com>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
16 #include <console/console.h>
17 #include <device/device.h>
19 static void init(struct device *dev)
21 printk(BIOS_DEBUG, "AAEON PFM-540I_REVB ENTER %s\n", __func__);
22 printk(BIOS_DEBUG, "AAEON PFM-540I_REVB EXIT %s\n", __func__);
25 static void mainboard_enable(struct device *dev)
27 dev->ops->init = init;
30 struct chip_operations mainboard_ops = {
31 .enable_dev = mainboard_enable,