summaryrefslogtreecommitdiffstats
path: root/OvmfPkg/Virtio10Dxe/Virtio10.h
diff options
context:
space:
mode:
Diffstat (limited to 'OvmfPkg/Virtio10Dxe/Virtio10.h')
-rw-r--r--OvmfPkg/Virtio10Dxe/Virtio10.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/OvmfPkg/Virtio10Dxe/Virtio10.h b/OvmfPkg/Virtio10Dxe/Virtio10.h
index 4258bbfcaa..355f2a0785 100644
--- a/OvmfPkg/Virtio10Dxe/Virtio10.h
+++ b/OvmfPkg/Virtio10Dxe/Virtio10.h
@@ -12,7 +12,7 @@
#include <Protocol/PciIo.h>
#include <Protocol/VirtioDevice.h>
-#define VIRTIO_1_0_SIGNATURE SIGNATURE_32 ('V', 'I', 'O', '1')
+#define VIRTIO_1_0_SIGNATURE SIGNATURE_32 ('V', 'I', 'O', '1')
//
// Type of the PCI BAR that contains a VirtIo 1.0 config structure.
@@ -26,22 +26,22 @@ typedef enum {
// The type below defines the access to a VirtIo 1.0 config structure.
//
typedef struct {
- BOOLEAN Exists; // The device exposes this structure
- VIRTIO_1_0_BAR_TYPE BarType;
- UINT8 Bar;
- UINT32 Offset; // Offset into BAR where structure starts
- UINT32 Length; // Length of structure in BAR.
+ BOOLEAN Exists; // The device exposes this structure
+ VIRTIO_1_0_BAR_TYPE BarType;
+ UINT8 Bar;
+ UINT32 Offset; // Offset into BAR where structure starts
+ UINT32 Length; // Length of structure in BAR.
} VIRTIO_1_0_CONFIG;
typedef struct {
- UINT32 Signature;
- VIRTIO_DEVICE_PROTOCOL VirtIo;
- EFI_PCI_IO_PROTOCOL *PciIo;
- UINT64 OriginalPciAttributes;
- VIRTIO_1_0_CONFIG CommonConfig; // Common settings
- VIRTIO_1_0_CONFIG NotifyConfig; // Notifications
- UINT32 NotifyOffsetMultiplier;
- VIRTIO_1_0_CONFIG SpecificConfig; // Device specific settings
+ UINT32 Signature;
+ VIRTIO_DEVICE_PROTOCOL VirtIo;
+ EFI_PCI_IO_PROTOCOL *PciIo;
+ UINT64 OriginalPciAttributes;
+ VIRTIO_1_0_CONFIG CommonConfig; // Common settings
+ VIRTIO_1_0_CONFIG NotifyConfig; // Notifications
+ UINT32 NotifyOffsetMultiplier;
+ VIRTIO_1_0_CONFIG SpecificConfig; // Device specific settings
} VIRTIO_1_0_DEV;
#define VIRTIO_1_0_FROM_VIRTIO_DEVICE(Device) \