blob: e7f7a40becac9cc64ddf446f35c887c439e26335 [file] [log] [blame]
Jonathan Neuschäfer1c09cfa2018-04-19 16:23:55 +02001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2018 Jonathan Neuschäfer
5 *
Martin Rothb28f4662018-05-26 17:58:47 -06006 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
Jonathan Neuschäfer1c09cfa2018-04-19 16:23:55 +02009 *
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.
14 */
15
16#include <device/device.h>
17#include <bootblock_common.h>
18#include <timestamp.h>
19
Elyes HAOUAS66ea1652018-05-04 22:01:42 +020020static void mainboard_enable(struct device *dev)
Jonathan Neuschäfer1c09cfa2018-04-19 16:23:55 +020021{
22}
23
24struct chip_operations mainboard_ops = {
25 .name = CONFIG_MAINBOARD_PART_NUMBER,
26 .enable_dev = mainboard_enable,
27};