summaryrefslogtreecommitdiff
path: root/src/mainboard/google/dedede/mainboard.c
blob: 51b1aa43464e104c87822c80f339f3ba0ef22e63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
 * This file is part of the coreboot project.
 *
 * Copyright 2020 The coreboot project Authors.
 *
 * SPDX-License-Identifier: GPL-2.0-or-later
 */

#include <device/device.h>

static void mainboard_init(void *chip_info)
{
	/* TODO: Perform mainboard initialization */
}

static void mainboard_enable(struct device *dev)
{
	/* TODO: Enable mainboard */
}

struct chip_operations mainboard_ops = {
	.init = mainboard_init,
	.enable_dev = mainboard_enable,
};