blob: 938a8f1c75be547c1938fe69dfa172755b957d5b [file] [log] [blame]
Angel Pons3ef916f2020-04-02 23:49:13 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Aaron Durbin15d2a792016-11-08 10:04:04 -06002
3#include <boardid.h>
4#include <smbios.h>
5#include <string.h>
6
7const char *smbios_mainboard_version(void)
8{
9 static char str[8];
10
11 snprintf(str, sizeof(str), "rev%d", board_id());
12
13 return str;
14}