2010-05-14 11:45:29 +02:00
|
|
|
/*
|
|
|
|
* This file is part of the coreboot project.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2010 Nils Jacobs
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation; version 2 of
|
|
|
|
* the License.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*/
|
|
|
|
|
2010-05-08 23:50:31 +02:00
|
|
|
#include <console/console.h>
|
|
|
|
#include <device/device.h>
|
|
|
|
|
2010-12-29 22:12:10 +01:00
|
|
|
static void init(struct device *dev)
|
|
|
|
{
|
|
|
|
printk(BIOS_DEBUG, "S50 ENTER %s\n", __func__);
|
|
|
|
printk(BIOS_DEBUG, "S50 EXIT %s\n", __func__);
|
|
|
|
}
|
|
|
|
|
2013-02-23 21:31:23 +01:00
|
|
|
static void mainboard_enable(struct device *dev)
|
2010-12-29 22:12:10 +01:00
|
|
|
{
|
|
|
|
dev->ops->init = init;
|
|
|
|
}
|
|
|
|
|
2010-05-08 23:50:31 +02:00
|
|
|
struct chip_operations mainboard_ops = {
|
2013-02-23 21:31:23 +01:00
|
|
|
.enable_dev = mainboard_enable,
|
2010-05-08 23:50:31 +02:00
|
|
|
};
|