mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 08:13:54 -06:00
Clean up a few header guard symbols
Commit58ea30f514
"Clean up header guards that don't match their file name" messed up contrib/elf2dmp/qemu_elf.h and tests/migration/migration-test.h. It missed target/cris/opcode-cris.h and tests/uefi-test-tools/UefiTestToolsPkg/Include/Guid/BiosTablesTest.h due to the scripts/clean-header-guards.pl bug fixed in the previous commit. Commita8b991b52d
"Clean up ill-advised or unusual header guards" missed include/hw/xen/io/ring.h for the same reason. Commit3979fca4b6
"disas: Rename include/disas/bfd.h back to include/disas/dis-asm.h" neglected to update the guard symbol for the rename. Commita331c6d774
"semihosting: implement a semihosting console" created include/hw/semihosting/console.h with an ill-advised guard symbol. Clean them up. Signed-off-by: Markus Armbruster <armbru@redhat.com> Message-Id: <20190604181618.19980-4-armbru@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com>
This commit is contained in:
parent
c0a9956b32
commit
37677d7db3
7 changed files with 18 additions and 19 deletions
|
@ -6,8 +6,8 @@
|
|||
* SPDX-License-Identifier: GPL-2.0-or-later
|
||||
*/
|
||||
|
||||
#ifndef _SEMIHOST_CONSOLE_H_
|
||||
#define _SEMIHOST_CONSOLE_H_
|
||||
#ifndef SEMIHOST_CONSOLE_H
|
||||
#define SEMIHOST_CONSOLE_H
|
||||
|
||||
/**
|
||||
* qemu_semihosting_console_out:
|
||||
|
@ -35,4 +35,4 @@ int qemu_semihosting_console_out(CPUArchState *env, target_ulong s, int len);
|
|||
*/
|
||||
int qemu_semihosting_log_out(const char *s, int len);
|
||||
|
||||
#endif /* _SEMIHOST_CONSOLE_H_ */
|
||||
#endif /* SEMIHOST_CONSOLE_H */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue