blob: 2c8efcddd8e9592235ab9f31fa4c75a17c76e33e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* SPDX-License-Identifier: GPL-2.0-only */
#include <boardid.h>
/* board_id is provided by ec/google/chromeec/ec_boardid.c */
uint32_t sku_id(void)
{
return 0;
}
uint32_t ram_code(void)
{
return 0;
}
|