summaryrefslogtreecommitdiff
path: root/src/vendorcode/google/smbios.c
blob: 938a8f1c75be547c1938fe69dfa172755b957d5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* SPDX-License-Identifier: GPL-2.0-only */

#include <boardid.h>
#include <smbios.h>
#include <string.h>

const char *smbios_mainboard_version(void)
{
	static char str[8];

	snprintf(str, sizeof(str), "rev%d", board_id());

	return str;
}