blob: cb05090bc6c9109e975c4134c9d400a6c99af8cb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */
#ifndef HARCUVAR_MAINBOARD_BOARD_H
#define HARCUVAR_MAINBOARD_BOARD_H
#include <stdint.h>
#define BoardIdHarcuvar 0x52
uint32_t board_id(void);
#endif /* MAINBOARD_BOARD_H */
|