summaryrefslogtreecommitdiffstats
path: root/include/hw/dma
diff options
context:
space:
mode:
authorMarkus Armbruster2019-06-04 20:16:15 +0200
committerMarkus Armbruster2019-06-12 13:20:20 +0200
commit0553d895f98d6ffa7354dee324ff7a65fca3367f (patch)
tree1bd0b187a8e4aa421d7af3e01ca3d18c80a5c2eb /include/hw/dma
parentInclude qemu-common.h exactly where needed (diff)
downloadqemu-0553d895f98d6ffa7354dee324ff7a65fca3367f.tar.gz
qemu-0553d895f98d6ffa7354dee324ff7a65fca3367f.tar.xz
qemu-0553d895f98d6ffa7354dee324ff7a65fca3367f.zip
Normalize position of header guard
This is the common header guard idiom: /* * File comment */ #ifndef GUARD_SYMBOL_H #define GUARD_SYMBOL_H ... actual contents ... #endif A few of our headers have some #include before the guard. target/tilegx/spr_def_64.h has #ifndef __DOXYGEN__ outside the guard. A few more have the #define elsewhere. Change them to match the common idiom. For spr_def_64.h, that means dropping #ifndef __DOXYGEN__. While there, rename guard symbols to make scripts/clean-header-guards.pl happy. Signed-off-by: Markus Armbruster <armbru@redhat.com> Message-Id: <20190604181618.19980-2-armbru@redhat.com> [Rebased with conflicts resolved automatically]
Diffstat (limited to 'include/hw/dma')
-rw-r--r--include/hw/dma/xlnx-zynq-devcfg.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/hw/dma/xlnx-zynq-devcfg.h b/include/hw/dma/xlnx-zynq-devcfg.h
index 9f5119a89a..1d3969d91f 100644
--- a/include/hw/dma/xlnx-zynq-devcfg.h
+++ b/include/hw/dma/xlnx-zynq-devcfg.h
@@ -25,6 +25,7 @@
*/
#ifndef XLNX_ZYNQ_DEVCFG_H
+#define XLNX_ZYNQ_DEVCFG_H
#include "hw/register.h"
#include "hw/sysbus.h"
@@ -58,5 +59,4 @@ typedef struct XlnxZynqDevcfg {
RegisterInfo regs_info[XLNX_ZYNQ_DEVCFG_R_MAX];
} XlnxZynqDevcfg;
-#define XLNX_ZYNQ_DEVCFG_H
#endif