blob: 1167a807ace06e59f9422b50f51712e43eb840e7 (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* SPDX-License-Identifier: GPL-2.0-only */
#include <smbios.h>
#include "vpd.h"
const char *smbios_mainboard_serial_number(void)
{
return get_emi_eeprom_vpd()->serial_number;
}
|