blob: ab4d6aec88c8f1804683d1a46fb557832b291daa [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 *
6 * This software is licensed under the terms of the GNU General Public
7 * License version 2, as published by the Free Software Foundation, and
8 * may be copied, distributed, and modified under those terms.
9 *
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
20static void mainboard_enable(device_t dev)
21{
22}
23
24struct chip_operations mainboard_ops = {
25 .name = CONFIG_MAINBOARD_PART_NUMBER,
26 .enable_dev = mainboard_enable,
27};