summaryrefslogtreecommitdiffstats
path: root/MdeModulePkg/Universal/Disk
diff options
context:
space:
mode:
authorAJFISH <AJFISH@6f19259b-4bc3-4df7-8a09-765794883524>2007-06-26 14:15:24 +0000
committerAJFISH <AJFISH@6f19259b-4bc3-4df7-8a09-765794883524>2007-06-26 14:15:24 +0000
commit42bc7f77710572f832c5054d3c5f738e3bcf5435 (patch)
treefa1a6857e3b3dbc20288cf2907d69a7e5a93e143 /MdeModulePkg/Universal/Disk
parent8ab504f024d09ed27a7fc15b661e8e66937fc37e (diff)
downloadedk2-42bc7f77710572f832c5054d3c5f738e3bcf5435.tar.gz
edk2-42bc7f77710572f832c5054d3c5f738e3bcf5435.tar.bz2
edk2-42bc7f77710572f832c5054d3c5f738e3bcf5435.zip
Update to fix coding style bugs
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@2758 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdeModulePkg/Universal/Disk')
-rw-r--r--MdeModulePkg/Universal/Disk/DiskIo/Dxe/DiskIo.h4
-rw-r--r--MdeModulePkg/Universal/Disk/Partition/Dxe/Partition.h9
2 files changed, 5 insertions, 8 deletions
diff --git a/MdeModulePkg/Universal/Disk/DiskIo/Dxe/DiskIo.h b/MdeModulePkg/Universal/Disk/DiskIo/Dxe/DiskIo.h
index 388b166e6e..c1a572f846 100644
--- a/MdeModulePkg/Universal/Disk/DiskIo/Dxe/DiskIo.h
+++ b/MdeModulePkg/Universal/Disk/DiskIo/Dxe/DiskIo.h
@@ -13,8 +13,8 @@
**/
-#ifndef _DISK_IO_H_
-#define _DISK_IO_H_
+#ifndef _DISK_IO_H
+#define _DISK_IO_H
#include <Uefi.h>
#include <Protocol/BlockIo.h>
diff --git a/MdeModulePkg/Universal/Disk/Partition/Dxe/Partition.h b/MdeModulePkg/Universal/Disk/Partition/Dxe/Partition.h
index 469c948157..570d0194b5 100644
--- a/MdeModulePkg/Universal/Disk/Partition/Dxe/Partition.h
+++ b/MdeModulePkg/Universal/Disk/Partition/Dxe/Partition.h
@@ -15,6 +15,8 @@
**/
+#ifndef _PARTITION_H
+#define _PARTITION_H
#include <Uefi.h>
#include <Protocol/BlockIo.h>
@@ -32,12 +34,6 @@
#include <Library/UefiBootServicesTableLib.h>
#include <Library/DevicePathLib.h>
-//
-// Driver Binding Externs
-//
-extern EFI_DRIVER_BINDING_PROTOCOL gPartitionDriverBinding;
-extern EFI_COMPONENT_NAME_PROTOCOL gPartitionComponentName;
-
#include <IndustryStandard/Mbr.h>
#include <IndustryStandard/ElTorito.h>
@@ -192,3 +188,4 @@ EFI_STATUS
IN EFI_DEVICE_PATH_PROTOCOL *DevicePath
);
+#endif