diff options
author | jljusten <jljusten@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-03-11 19:06:05 +0000 |
---|---|---|
committer | jljusten <jljusten@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-03-11 19:06:05 +0000 |
commit | 344177857f854eeb76ed1c56c82a8eac703c1cde (patch) | |
tree | 96bb42dec1d7b4bb0b377c31d198e72fc605dbec /MdeModulePkg | |
parent | 12f3a14283e0c2052bf5d6cbaf353bfd9d4da785 (diff) | |
download | edk2-platforms-344177857f854eeb76ed1c56c82a8eac703c1cde.tar.xz |
edk2/MdeModulePkg/Universal/Network/UefiPxeBcDxe/PxeBcImpl.h
Fix filename case(sensitivity) issues. (Smbios.h -> SmBios.h)
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@4836 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdeModulePkg')
-rw-r--r-- | MdeModulePkg/Universal/Network/UefiPxeBcDxe/PxeBcImpl.h | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/MdeModulePkg/Universal/Network/UefiPxeBcDxe/PxeBcImpl.h b/MdeModulePkg/Universal/Network/UefiPxeBcDxe/PxeBcImpl.h index 6bd7a55531..cd428e75d1 100644 --- a/MdeModulePkg/Universal/Network/UefiPxeBcDxe/PxeBcImpl.h +++ b/MdeModulePkg/Universal/Network/UefiPxeBcDxe/PxeBcImpl.h @@ -24,25 +24,25 @@ Abstract: typedef struct _PXEBC_PRIVATE_DATA PXEBC_PRIVATE_DATA; -#include <PiDxe.h>
-
-#include <Guid/SmBios.h>
-#include <IndustryStandard/Smbios.h>
-#include <Protocol/Dhcp4.h>
-#include <Protocol/PxeBaseCode.h>
-#include <Protocol/Mtftp4.h>
-#include <Protocol/Udp4.h>
-#include <Protocol/LoadFile.h>
-#include <Protocol/NetworkInterfaceIdentifier.h>
-#include <Protocol/PxeBaseCodeCallBack.h>
+#include <PiDxe.h> + +#include <Guid/SmBios.h> +#include <IndustryStandard/SmBios.h> +#include <Protocol/Dhcp4.h> +#include <Protocol/PxeBaseCode.h> +#include <Protocol/Mtftp4.h> +#include <Protocol/Udp4.h> +#include <Protocol/LoadFile.h> +#include <Protocol/NetworkInterfaceIdentifier.h> +#include <Protocol/PxeBaseCodeCallBack.h> #include <Protocol/Arp.h> -
-#include <Library/DebugLib.h>
-#include <Library/BaseMemoryLib.h>
-#include <Library/UefiDriverEntryPoint.h>
-#include <Library/UefiBootServicesTableLib.h>
-#include <Library/UefiLib.h>
-#include <Library/BaseLib.h>
+ +#include <Library/DebugLib.h> +#include <Library/BaseMemoryLib.h> +#include <Library/UefiDriverEntryPoint.h> +#include <Library/UefiBootServicesTableLib.h> +#include <Library/UefiLib.h> +#include <Library/BaseLib.h> #include <Library/NetLib.h> #include "PxeBcDriver.h" |