Reviewed-by: Giri P Mudusuru <[email protected]>
> -----Original Message----- > From: edk2-devel [mailto:[email protected]] On Behalf Of Star > Zeng > Sent: Wednesday, July 27, 2016 8:04 PM > To: [email protected] > Cc: Tian, Feng <[email protected]>; Chan, Amy <[email protected]>; > Zeng, Star <[email protected]> > Subject: [edk2] [PATCH 3/3] MdeModulePkg SmbiosDxe: Use definition in > IndustryStandard/Smbios.h > > Cc: Feng Tian <[email protected]> > Cc: Amy Chan <[email protected]> > Contributed-under: TianoCore Contribution Agreement 1.0 > Signed-off-by: Star Zeng <[email protected]> > --- > MdeModulePkg/Universal/SmbiosDxe/SmbiosDxe.c | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/MdeModulePkg/Universal/SmbiosDxe/SmbiosDxe.c > b/MdeModulePkg/Universal/SmbiosDxe/SmbiosDxe.c > index 809dff84ac9b..ea762d59b9bd 100644 > --- a/MdeModulePkg/Universal/SmbiosDxe/SmbiosDxe.c > +++ b/MdeModulePkg/Universal/SmbiosDxe/SmbiosDxe.c > @@ -2,7 +2,7 @@ > This code produces the Smbios protocol. It also responsible for > constructing > SMBIOS table into system table. > > -Copyright (c) 2009 - 2015, Intel Corporation. All rights reserved.<BR> > +Copyright (c) 2009 - 2016, Intel Corporation. All rights reserved.<BR> > This program and the accompanying materials > are licensed and made available under the terms and conditions of the BSD > License > which accompanies this distribution. The full text of the license may be > found > at > @@ -1127,7 +1127,7 @@ SmbiosCreateTable ( > // Create End-Of-Table structure > // > GetMaxSmbiosHandle(SmbiosProtocol, &SmbiosHandle); > - EndStructure.Header.Type = EFI_SMBIOS_TYPE_END_OF_TABLE; > + EndStructure.Header.Type = SMBIOS_TYPE_END_OF_TABLE; > EndStructure.Header.Length = (UINT8) sizeof (EFI_SMBIOS_TABLE_HEADER); > EndStructure.Header.Handle = SmbiosHandle; > EndStructure.Tailing[0] = 0; > @@ -1300,7 +1300,7 @@ SmbiosCreate64BitTable ( > // Create End-Of-Table structure > // > GetMaxSmbiosHandle(SmbiosProtocol, &SmbiosHandle); > - EndStructure.Header.Type = EFI_SMBIOS_TYPE_END_OF_TABLE; > + EndStructure.Header.Type = SMBIOS_TYPE_END_OF_TABLE; > EndStructure.Header.Length = (UINT8) sizeof (EFI_SMBIOS_TABLE_HEADER); > EndStructure.Header.Handle = SmbiosHandle; > EndStructure.Tailing[0] = 0; > -- > 2.7.0.windows.1 > > _______________________________________________ > edk2-devel mailing list > [email protected] > https://lists.01.org/mailman/listinfo/edk2-devel _______________________________________________ edk2-devel mailing list [email protected] https://lists.01.org/mailman/listinfo/edk2-devel

