1 /*++ 2 3 Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.<BR> 4 5 This program and the accompanying materials are licensed and made available under 7 the terms and conditions of the BSD License that accompanies this distribution. 9 The full text of the license may be found at 11 http://opensource.org/licenses/bsd-license.php. 13 15 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 17 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 19 21 23 24 Module Name: 25 26 MiscPhysicalArrayData.c 27 28 Abstract: 29 30 BIOS Physical Array static data. 31 SMBIOS type 16. 32 33 --*/ 34 35 36 #include "CommonHeader.h" 37 38 #include "MiscSubclassDriver.h" 39 40 41 42 // 43 // Static (possibly build generated) Physical Memory Array Dat. 44 // 45 MISC_SMBIOS_TABLE_DATA(EFI_MEMORY_ARRAY_LOCATION_DATA, MiscPhysicalMemoryArray) = 46 { 47 EfiMemoryArrayLocationSystemBoard, // Memory location 48 EfiMemoryArrayUseSystemMemory, // Memory array use 49 EfiMemoryErrorCorrectionNone, // Memory error correction 50 0, // Maximum Memory Capacity 51 0x01 // Number of Devices 52 }; 53