repo.or.cz
/
coreboot.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
payloads/edk2: Disable the CPU Timer Lib unless supported
[coreboot.git]
/
src
/
mainboard
/
intel
/
harcuvar
/
boardid.c
blob
f4c6ae52082abfedebf35a0af1dc4b0da740e7b6
1
/* SPDX-License-Identifier: GPL-2.0-only */
2
3
#include <console/console.h>
4
5
#include
"harcuvar_boardid.h"
6
7
uint32_t
board_id
(
void
)
8
{
9
int
id
=
BoardIdHarcuvar
;
10
11
printk
(
BIOS_SPEW
,
"Board ID: %#x.
\n
"
,
id
);
12
13
return
id
;
14
}