coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
board.c
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #include <baseboard/variants.h>
4 #include <nhlt.h>
5 #include <soc/nhlt.h>
6 
7 void variant_nhlt_oem_overrides(const char **oem_id,
8  const char **oem_table_id,
9  uint32_t *oem_revision)
10 {
11  *oem_id = "GOOGLE";
12  *oem_table_id = "ENDEAVOUR";
13  *oem_revision = 0;
14 }
15 
17 {
18 
19 }
void variant_chip_display_init(void)
Definition: board.c:16
void variant_nhlt_oem_overrides(const char **oem_id, const char **oem_table_id, uint32_t *oem_revision)
Definition: board.c:7
unsigned int uint32_t
Definition: stdint.h:14