diff options
author | Markus Armbruster <armbru@redhat.com> | 2019-03-15 15:51:20 +0100 |
---|---|---|
committer | Markus Armbruster <armbru@redhat.com> | 2019-05-13 08:58:55 +0200 |
commit | 58ea30f5145fc8c7ebb80ee0b0c812a3a958c762 (patch) | |
tree | 7f87b21d9446843917a711a5c9501c4533465472 /target/nios2 | |
parent | 814167479a4c7cccc3f5d532fc234dc75ab8961c (diff) | |
download | qemu-58ea30f5145fc8c7ebb80ee0b0c812a3a958c762.zip qemu-58ea30f5145fc8c7ebb80ee0b0c812a3a958c762.tar.gz qemu-58ea30f5145fc8c7ebb80ee0b0c812a3a958c762.tar.bz2 |
Clean up header guards that don't match their file name
Header guard symbols should match their file name to make guard
collisions less likely.
Cleaned up with scripts/clean-header-guards.pl, followed by some
renaming of new guard symbols picked by the script to better ones.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Message-Id: <20190315145123.28030-6-armbru@redhat.com>
[Rebase to master: update include/hw/net/ne2000-isa.h]
Diffstat (limited to 'target/nios2')
-rw-r--r-- | target/nios2/cpu.h | 7 | ||||
-rw-r--r-- | target/nios2/mmu.h | 7 |
2 files changed, 8 insertions, 6 deletions
diff --git a/target/nios2/cpu.h b/target/nios2/cpu.h index 881e7d5..adc9072 100644 --- a/target/nios2/cpu.h +++ b/target/nios2/cpu.h @@ -17,8 +17,9 @@ * License along with this library; if not, see * <http://www.gnu.org/licenses/lgpl-2.1.html> */ -#ifndef CPU_NIOS2_H -#define CPU_NIOS2_H + +#ifndef NIOS2_CPU_H +#define NIOS2_CPU_H #include "qemu-common.h" @@ -270,4 +271,4 @@ static inline void cpu_get_tb_cpu_state(CPUNios2State *env, target_ulong *pc, *flags = (env->regs[CR_STATUS] & (CR_STATUS_EH | CR_STATUS_U)); } -#endif /* CPU_NIOS2_H */ +#endif /* NIOS2_CPU_H */ diff --git a/target/nios2/mmu.h b/target/nios2/mmu.h index 51d3d1f..4f46fbb 100644 --- a/target/nios2/mmu.h +++ b/target/nios2/mmu.h @@ -17,8 +17,9 @@ * License along with this library; if not, see * <http://www.gnu.org/licenses/lgpl-2.1.html> */ -#ifndef MMU_NIOS2_H -#define MMU_NIOS2_H + +#ifndef NIOS2_MMU_H +#define NIOS2_MMU_H typedef struct Nios2TLBEntry { target_ulong tag; @@ -47,4 +48,4 @@ void mmu_read_debug(CPUNios2State *env, uint32_t rn); void mmu_write(CPUNios2State *env, uint32_t rn, uint32_t v); void mmu_init(CPUNios2State *env); -#endif /* MMU_NIOS2_H */ +#endif /* NIOS2_MMU_H */ |