diff options
author | jljusten <jljusten@6f19259b-4bc3-4df7-8a09-765794883524> | 2012-10-12 18:52:37 +0000 |
---|---|---|
committer | jljusten <jljusten@6f19259b-4bc3-4df7-8a09-765794883524> | 2012-10-12 18:52:37 +0000 |
commit | d1281916206b835e51596bffc744a99f7b71e874 (patch) | |
tree | b2fe2ad632a1d4836b9f48ac548d0773de10d3ec | |
parent | 045b46e92d2ff47a1fa1d7aece0155b87b412e3d (diff) | |
download | edk2-platforms-d1281916206b835e51596bffc744a99f7b71e874.tar.xz |
OvmfPkg: add inclusion guards in Include/IndustryStandard/Virtio.h
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://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@13837 6f19259b-4bc3-4df7-8a09-765794883524
-rw-r--r-- | OvmfPkg/Include/IndustryStandard/Virtio.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/OvmfPkg/Include/IndustryStandard/Virtio.h b/OvmfPkg/Include/IndustryStandard/Virtio.h index 5e2e8f4c6f..ff4b71c84c 100644 --- a/OvmfPkg/Include/IndustryStandard/Virtio.h +++ b/OvmfPkg/Include/IndustryStandard/Virtio.h @@ -14,6 +14,9 @@ **/
+#ifndef _VIRTIO_H_
+#define _VIRTIO_H_
+
#include <Base.h>
@@ -174,3 +177,5 @@ typedef struct { #define VIRTIO_BLK_S_OK 0x00
#define VIRTIO_BLK_S_IOERR 0x01
#define VIRTIO_BLK_S_UNSUPP 0x02
+
+#endif // _VIRTIO_H_
|