tree: drop last paragraph of GPL copyright header
[coreboot.git] / src / mainboard / wyse / s50 / mainboard.c
blob7b746e33bb21e407927c37d2873e9e694f02791f
1 /*
2 * This file is part of the coreboot project.
4 * Copyright (C) 2010 Nils Jacobs
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation; version 2 of
9 * the License.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
17 #include <console/console.h>
18 #include <device/device.h>
20 static void init(struct device *dev)
22 printk(BIOS_DEBUG, "S50 ENTER %s\n", __func__);
23 printk(BIOS_DEBUG, "S50 EXIT %s\n", __func__);
26 static void mainboard_enable(struct device *dev)
28 dev->ops->init = init;
31 struct chip_operations mainboard_ops = {
32 .enable_dev = mainboard_enable,