mirror of https://github.com/acidanthera/audk.git
Add two new data hub subclass related definitions per SMBIOS 2.4 spec.
1. memory device type for DDR2 2. System slot type for Pci Express git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@1772 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
1fd225e033
commit
3683e55034
|
@ -671,7 +671,8 @@ typedef enum _EFI_MEMORY_ARRAY_TYPE {
|
|||
EfiMemoryTypeSdram = 0x0F,
|
||||
EfiMemoryTypeSgram = 0x10,
|
||||
EfiMemoryTypeRdram = 0x11,
|
||||
EfiMemoryTypeDdr = 0x12
|
||||
EfiMemoryTypeDdr = 0x12,
|
||||
EfiMemoryTypeDdr2 = 0x13
|
||||
} EFI_MEMORY_ARRAY_TYPE;
|
||||
|
||||
typedef struct {
|
||||
|
@ -1163,6 +1164,7 @@ typedef enum {
|
|||
EfiSlotTypePC98E = 0xA2,
|
||||
EfiSlotTypePC98LocalBus = 0xA3,
|
||||
EfiSlotTypePC98Card = 0xA4,
|
||||
EfiSlotTypePciExpress = 0xA5
|
||||
} EFI_MISC_SLOT_TYPE;
|
||||
|
||||
typedef enum {
|
||||
|
|
Loading…
Reference in New Issue