]> git.proxmox.com Git - mirror_edk2.git/blob - ArmPkg/Universal/Smbios/SmbiosMiscDxe/Type01/MiscSystemManufacturerData.c
ArmPkg: Apply uncrustify changes
[mirror_edk2.git] / ArmPkg / Universal / Smbios / SmbiosMiscDxe / Type01 / MiscSystemManufacturerData.c
1 /** @file
2 This file provides Smbios Type1 Data
3
4 Based on files under Nt32Pkg/MiscSubClassPlatformDxe/
5
6 Copyright (c) 2021, NUVIA Inc. All rights reserved.<BR>
7 Copyright (c) 2006 - 2009, Intel Corporation. All rights reserved.<BR>
8 Copyright (c) 2015, Hisilicon Limited. All rights reserved.<BR>
9 Copyright (c) 2015, Linaro Limited. All rights reserved.<BR>
10 SPDX-License-Identifier: BSD-2-Clause-Patent
11
12 **/
13
14 #include "SmbiosMisc.h"
15
16 //
17 // Static (possibly build generated) System Manufacturer data.
18 //
19 SMBIOS_MISC_TABLE_DATA (SMBIOS_TABLE_TYPE1, MiscSystemManufacturer) = {
20 { // Hdr
21 EFI_SMBIOS_TYPE_SYSTEM_INFORMATION, // Type,
22 0, // Length,
23 0 // Handle
24 },
25 1, // Manufacturer
26 2, // ProductName
27 3, // Version
28 4, // SerialNumber
29 { // Uuid
30 0x00000000, 0x0000, 0x0000, { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}
31 },
32 SystemWakeupTypePowerSwitch, // SystemWakeupType
33 5, // SKUNumber,
34 6 // Family
35 };