blob: 8f91b0c61d1962ffd784f08d6046c91e8067a1eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */
#include <console/console.h>
#include "harcuvar_boardid.h"
uint8_t board_id(void)
{
int id = BoardIdHarcuvar;
printk(BIOS_SPEW, "Board ID: %#x.\n", id);
return id;
}
|