Reviewed-by: [email protected] Thanks, Ray
> 在 2015年12月16日,下午6:18,Liming Gao <[email protected]> 写道: > > Move the global variable definitions into source code instead of head filer. > > Contributed-under: TianoCore Contribution Agreement 1.0 > Signed-off-by: Liming Gao <[email protected]> > --- > DuetPkg/EfiLdr/EfiLdr.h | 3 --- > DuetPkg/EfiLdr/EfiLoader.c | 3 +++ > 2 files changed, 3 insertions(+), 3 deletions(-) > > diff --git a/DuetPkg/EfiLdr/EfiLdr.h b/DuetPkg/EfiLdr/EfiLdr.h > index 665f405..4f21cf3 100644 > --- a/DuetPkg/EfiLdr/EfiLdr.h > +++ b/DuetPkg/EfiLdr/EfiLdr.h > @@ -80,9 +80,6 @@ typedef struct { > BIOS_MEMORY_MAP_ENTRY MemoryMapEntry[1]; > } BIOS_MEMORY_MAP; > > -EFILDR_LOADED_IMAGE DxeCoreImage; > -EFILDR_LOADED_IMAGE DxeIplImage; > - > typedef > VOID > (EFIAPI * EFI_MAIN_ENTRYPOINT) ( > diff --git a/DuetPkg/EfiLdr/EfiLoader.c b/DuetPkg/EfiLdr/EfiLoader.c > index 6913027..b23966e 100644 > --- a/DuetPkg/EfiLdr/EfiLoader.c > +++ b/DuetPkg/EfiLdr/EfiLoader.c > @@ -24,6 +24,9 @@ Revision History: > #include "PeLoader.h" > #include "LzmaDecompress.h" > > +EFILDR_LOADED_IMAGE DxeCoreImage; > +EFILDR_LOADED_IMAGE DxeIplImage; > + > VOID > SystemHang ( > CHAR8 *Message > -- > 1.9.5.msysgit.0 > > _______________________________________________ > 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

