diff options
author | Markus Armbruster | 2016-06-29 15:29:06 +0200 |
---|---|---|
committer | Markus Armbruster | 2016-07-12 16:20:46 +0200 |
commit | 175de52487ce0b0c78daa4cdf41a5a465a168a25 (patch) | |
tree | 2beed30befbec6d0d54a242f12817fdf5451bb20 /include/hw/arm | |
parent | Clean up ill-advised or unusual header guards (diff) | |
download | qemu-175de52487ce0b0c78daa4cdf41a5a465a168a25.tar.gz qemu-175de52487ce0b0c78daa4cdf41a5a465a168a25.tar.xz qemu-175de52487ce0b0c78daa4cdf41a5a465a168a25.zip |
Clean up decorations and whitespace around header guards
Cleaned up with scripts/clean-header-guards.pl.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Richard Henderson <rth@twiddle.net>
Diffstat (limited to 'include/hw/arm')
-rw-r--r-- | include/hw/arm/pxa.h | 5 | ||||
-rw-r--r-- | include/hw/arm/soc_dma.h | 3 |
2 files changed, 4 insertions, 4 deletions
diff --git a/include/hw/arm/pxa.h b/include/hw/arm/pxa.h index 074feacd03..dd1a48b0c1 100644 --- a/include/hw/arm/pxa.h +++ b/include/hw/arm/pxa.h @@ -6,8 +6,9 @@ * * This code is licensed under the GNU GPL v2. */ + #ifndef PXA_H -# define PXA_H "pxa.h" +#define PXA_H #include "exec/memory.h" #include "target-arm/cpu-qom.h" @@ -189,4 +190,4 @@ PXA2xxState *pxa270_init(MemoryRegion *address_space, unsigned int sdram_size, const char *revision); PXA2xxState *pxa255_init(MemoryRegion *address_space, unsigned int sdram_size); -#endif /* PXA_H */ +#endif /* PXA_H */ diff --git a/include/hw/arm/soc_dma.h b/include/hw/arm/soc_dma.h index 7379731afd..fae322997e 100644 --- a/include/hw/arm/soc_dma.h +++ b/include/hw/arm/soc_dma.h @@ -19,8 +19,7 @@ */ #ifndef HW_SOC_DMA_H -#define HW_SOC_DMA_H 1 - +#define HW_SOC_DMA_H #include "exec/memory.h" #include "hw/irq.h" |