diff options
author | Markus Armbruster <armbru@redhat.com> | 2019-03-15 15:51:22 +0100 |
---|---|---|
committer | Markus Armbruster <armbru@redhat.com> | 2019-05-13 08:58:55 +0200 |
commit | 177d9e0da094efb0fadb8daf54b340729b452c8f (patch) | |
tree | c58161507a8511c677be47a4d03a127e7c98959e /include | |
parent | a8b991b52dcde75ab5065046653626951aac666d (diff) | |
download | qemu-177d9e0da094efb0fadb8daf54b340729b452c8f.zip qemu-177d9e0da094efb0fadb8daf54b340729b452c8f.tar.gz qemu-177d9e0da094efb0fadb8daf54b340729b452c8f.tar.bz2 |
Normalize header guard symbol definition.
We commonly define the header guard symbol without an explicit value.
Normalize the exceptions.
Done with scripts/clean-header-guards.pl.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Message-Id: <20190315145123.28030-8-armbru@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/disas/capstone.h | 2 | ||||
-rw-r--r-- | include/hw/scsi/emulation.h | 2 | ||||
-rw-r--r-- | include/qemu/stats64.h | 2 | ||||
-rw-r--r-- | include/qemu/sys_membarrier.h | 2 | ||||
-rw-r--r-- | include/qemu/systemd.h | 2 | ||||
-rw-r--r-- | include/scsi/utils.h | 2 | ||||
-rw-r--r-- | include/ui/kbd-state.h | 3 |
7 files changed, 8 insertions, 7 deletions
diff --git a/include/disas/capstone.h b/include/disas/capstone.h index 84e2149..e29068d 100644 --- a/include/disas/capstone.h +++ b/include/disas/capstone.h @@ -1,5 +1,5 @@ #ifndef QEMU_CAPSTONE_H -#define QEMU_CAPSTONE_H 1 +#define QEMU_CAPSTONE_H #ifdef CONFIG_CAPSTONE diff --git a/include/hw/scsi/emulation.h b/include/hw/scsi/emulation.h index 09fba1f..9521704 100644 --- a/include/hw/scsi/emulation.h +++ b/include/hw/scsi/emulation.h @@ -1,5 +1,5 @@ #ifndef HW_SCSI_EMULATION_H -#define HW_SCSI_EMULATION_H 1 +#define HW_SCSI_EMULATION_H typedef struct SCSIBlockLimits { bool wsnz; diff --git a/include/qemu/stats64.h b/include/qemu/stats64.h index 4a357b3..19a5ac4 100644 --- a/include/qemu/stats64.h +++ b/include/qemu/stats64.h @@ -10,7 +10,7 @@ */ #ifndef QEMU_STATS64_H -#define QEMU_STATS64_H 1 +#define QEMU_STATS64_H #include "qemu/atomic.h" diff --git a/include/qemu/sys_membarrier.h b/include/qemu/sys_membarrier.h index 316e3dc..b5bfa21 100644 --- a/include/qemu/sys_membarrier.h +++ b/include/qemu/sys_membarrier.h @@ -7,7 +7,7 @@ */ #ifndef QEMU_SYS_MEMBARRIER_H -#define QEMU_SYS_MEMBARRIER_H 1 +#define QEMU_SYS_MEMBARRIER_H #ifdef CONFIG_MEMBARRIER /* Only block reordering at the compiler level in the performance-critical diff --git a/include/qemu/systemd.h b/include/qemu/systemd.h index e6a877e..f0ea126 100644 --- a/include/qemu/systemd.h +++ b/include/qemu/systemd.h @@ -11,7 +11,7 @@ */ #ifndef QEMU_SYSTEMD_H -#define QEMU_SYSTEMD_H 1 +#define QEMU_SYSTEMD_H #define FIRST_SOCKET_ACTIVATION_FD 3 /* defined by systemd ABI */ diff --git a/include/scsi/utils.h b/include/scsi/utils.h index 4b705f5..9351b21 100644 --- a/include/scsi/utils.h +++ b/include/scsi/utils.h @@ -1,5 +1,5 @@ #ifndef SCSI_UTILS_H -#define SCSI_UTILS_H 1 +#define SCSI_UTILS_H #ifdef CONFIG_LINUX #include <scsi/sg.h> diff --git a/include/ui/kbd-state.h b/include/ui/kbd-state.h index d878335..eb9067d 100644 --- a/include/ui/kbd-state.h +++ b/include/ui/kbd-state.h @@ -3,8 +3,9 @@ * (at your option) any later version. See the COPYING file in the * top-level directory. */ + #ifndef QEMU_UI_KBD_STATE_H -#define QEMU_UI_KBD_STATE_H 1 +#define QEMU_UI_KBD_STATE_H #include "qapi/qapi-types-ui.h" |