diff options
author | Laszlo Ersek <lersek@redhat.com> | 2013-12-18 19:57:18 +0000 |
---|---|---|
committer | jljusten <jljusten@6f19259b-4bc3-4df7-8a09-765794883524> | 2013-12-18 19:57:18 +0000 |
commit | 1d17076b0084664a4ea3009117f767f35254f6be (patch) | |
tree | 1202c3ac283087f6d27129e9372f4a15f7b5e64e /OvmfPkg/Include/IndustryStandard | |
parent | d4468cdf14e37bdbb35bff98c04e984d0622fcd1 (diff) | |
download | edk2-1d17076b0084664a4ea3009117f767f35254f6be.tar.gz edk2-1d17076b0084664a4ea3009117f767f35254f6be.tar.bz2 edk2-1d17076b0084664a4ea3009117f767f35254f6be.zip |
OvmfPkg: IndustryStandard/VirtioBlk: add extra horizontal whitespace
We're going to introduce a new macro and a new VIRTIO_BLK_CONFIG member
that need realignment of existing definitions and comments. Separate out
the whitespace changes in this patch.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Laszlo Ersek <lersek@redhat.com>
Reviewed-by: Jordan Justen <jordan.l.justen@intel.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@15001 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'OvmfPkg/Include/IndustryStandard')
-rw-r--r-- | OvmfPkg/Include/IndustryStandard/VirtioBlk.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/OvmfPkg/Include/IndustryStandard/VirtioBlk.h b/OvmfPkg/Include/IndustryStandard/VirtioBlk.h index ab11e6c855..a9f91e4673 100644 --- a/OvmfPkg/Include/IndustryStandard/VirtioBlk.h +++ b/OvmfPkg/Include/IndustryStandard/VirtioBlk.h @@ -26,13 +26,13 @@ //
#pragma pack(1)
typedef struct {
- UINT64 Capacity;
- UINT32 SizeMax;
- UINT32 SegMax;
- UINT16 Cylinders;
- UINT8 Heads;
- UINT8 Sectors;
- UINT32 BlkSize;
+ UINT64 Capacity;
+ UINT32 SizeMax;
+ UINT32 SegMax;
+ UINT16 Cylinders;
+ UINT8 Heads;
+ UINT8 Sectors;
+ UINT32 BlkSize;
} VIRTIO_BLK_CONFIG;
#pragma pack()
@@ -44,12 +44,12 @@ typedef struct { #define VIRTIO_BLK_F_SEG_MAX BIT2
#define VIRTIO_BLK_F_GEOMETRY BIT4
#define VIRTIO_BLK_F_RO BIT5
-#define VIRTIO_BLK_F_BLK_SIZE BIT6 // treated as "logical block size" in
- // practice; actual host side implementation
- // negotiates "optimal" block size
- // separately
+#define VIRTIO_BLK_F_BLK_SIZE BIT6 // treated as "logical block size" in
+ // practice; actual host side
+ // implementation negotiates "optimal"
+ // block size separately
#define VIRTIO_BLK_F_SCSI BIT7
-#define VIRTIO_BLK_F_FLUSH BIT9 // identical to "write cache enabled"
+#define VIRTIO_BLK_F_FLUSH BIT9 // identical to "write cache enabled"
//
// We keep the status byte separate from the rest of the virtio-blk request
|