repo.or.cz
/
coreboot2.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
cpu/x86/smm/pci_resource_store: Store DEV/VEN ID
[coreboot2.git]
/
src
/
mainboard
/
intel
/
leafhill
/
mainboard.c
blob
0ba29c45a2b51d2cbafd645c6bf2940c6a2ee909
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
10
struct
chip_operations mainboard_ops
= {
11
.
init
=
mainboard_init
,
12
};