summaryrefslogtreecommitdiffstats
path: root/MdeModulePkg/Include/Protocol/NonDiscoverableDevice.h
diff options
context:
space:
mode:
Diffstat (limited to 'MdeModulePkg/Include/Protocol/NonDiscoverableDevice.h')
-rw-r--r--MdeModulePkg/Include/Protocol/NonDiscoverableDevice.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/MdeModulePkg/Include/Protocol/NonDiscoverableDevice.h b/MdeModulePkg/Include/Protocol/NonDiscoverableDevice.h
index 53ab804f32..2399e6fdc1 100644
--- a/MdeModulePkg/Include/Protocol/NonDiscoverableDevice.h
+++ b/MdeModulePkg/Include/Protocol/NonDiscoverableDevice.h
@@ -43,7 +43,7 @@ typedef enum {
**/
typedef
EFI_STATUS
-(EFIAPI *NON_DISCOVERABLE_DEVICE_INIT) (
+(EFIAPI *NON_DISCOVERABLE_DEVICE_INIT)(
IN NON_DISCOVERABLE_DEVICE *This
);
@@ -51,21 +51,21 @@ struct _NON_DISCOVERABLE_DEVICE {
//
// The type of device
//
- CONST EFI_GUID *Type;
+ CONST EFI_GUID *Type;
//
// Whether this device is DMA coherent
//
- NON_DISCOVERABLE_DEVICE_DMA_TYPE DmaType;
+ NON_DISCOVERABLE_DEVICE_DMA_TYPE DmaType;
//
// Initialization function for the device
//
- NON_DISCOVERABLE_DEVICE_INIT Initialize;
+ NON_DISCOVERABLE_DEVICE_INIT Initialize;
//
// The MMIO and I/O regions owned by the device
//
- EFI_ACPI_ADDRESS_SPACE_DESCRIPTOR *Resources;
+ EFI_ACPI_ADDRESS_SPACE_DESCRIPTOR *Resources;
};
-extern EFI_GUID gEdkiiNonDiscoverableDeviceProtocolGuid;
+extern EFI_GUID gEdkiiNonDiscoverableDeviceProtocolGuid;
#endif