coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
mainboard.c
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #include <device/device.h>
4 
5 static void mainboard_init(void *chip_info)
6 {
7  /* Nothing Here Yet */
8 }
9 
12 };
struct chip_operations mainboard_ops
Definition: mainboard.c:19
static void mainboard_init(void *chip_info)
Definition: mainboard.c:5
void(* init)(void *chip_info)
Definition: device.h:25