Skip to content

Commit

Permalink
linux-user: Clean up hostdep.h header guards
Browse files Browse the repository at this point in the history
These headers all use QEMU_HOSTDEP_H as header guard symbol.  Reuse of
the same guard symbol in multiple headers is okay as long as they
cannot be included together.

Since we can avoid guard symbol reuse easily, do so: use guard symbol
$target_HOSTDEP_H for linux-user/host/$target/hostdep.h.

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Richard Henderson <rth@twiddle.net>
  • Loading branch information
Markus Armbruster committed Jul 12, 2016
1 parent 3500385 commit 59e96bc
Show file tree
Hide file tree
Showing 13 changed files with 26 additions and 26 deletions.
4 changes: 2 additions & 2 deletions linux-user/host/aarch64/hostdep.h
Expand Up @@ -9,8 +9,8 @@
* See the COPYING file in the top-level directory.
*/

#ifndef QEMU_HOSTDEP_H
#define QEMU_HOSTDEP_H
#ifndef AARCH64_HOSTDEP_H
#define AARCH64_HOSTDEP_H

/* We have a safe-syscall.inc.S */
#define HAVE_SAFE_SYSCALL
Expand Down
4 changes: 2 additions & 2 deletions linux-user/host/arm/hostdep.h
Expand Up @@ -9,8 +9,8 @@
* See the COPYING file in the top-level directory.
*/

#ifndef QEMU_HOSTDEP_H
#define QEMU_HOSTDEP_H
#ifndef ARM_HOSTDEP_H
#define ARM_HOSTDEP_H

/* We have a safe-syscall.inc.S */
#define HAVE_SAFE_SYSCALL
Expand Down
4 changes: 2 additions & 2 deletions linux-user/host/i386/hostdep.h
Expand Up @@ -9,8 +9,8 @@
* See the COPYING file in the top-level directory.
*/

#ifndef QEMU_HOSTDEP_H
#define QEMU_HOSTDEP_H
#ifndef I386_HOSTDEP_H
#define I386_HOSTDEP_H

/* We have a safe-syscall.inc.S */
#define HAVE_SAFE_SYSCALL
Expand Down
4 changes: 2 additions & 2 deletions linux-user/host/ia64/hostdep.h
Expand Up @@ -9,7 +9,7 @@
* See the COPYING file in the top-level directory.
*/

#ifndef QEMU_HOSTDEP_H
#define QEMU_HOSTDEP_H
#ifndef IA64_HOSTDEP_H
#define IA64_HOSTDEP_H

#endif
4 changes: 2 additions & 2 deletions linux-user/host/mips/hostdep.h
Expand Up @@ -9,7 +9,7 @@
* See the COPYING file in the top-level directory.
*/

#ifndef QEMU_HOSTDEP_H
#define QEMU_HOSTDEP_H
#ifndef MIPS_HOSTDEP_H
#define MIPS_HOSTDEP_H

#endif
4 changes: 2 additions & 2 deletions linux-user/host/ppc/hostdep.h
Expand Up @@ -9,7 +9,7 @@
* See the COPYING file in the top-level directory.
*/

#ifndef QEMU_HOSTDEP_H
#define QEMU_HOSTDEP_H
#ifndef PPC_HOSTDEP_H
#define PPC_HOSTDEP_H

#endif
4 changes: 2 additions & 2 deletions linux-user/host/ppc64/hostdep.h
Expand Up @@ -9,8 +9,8 @@
* See the COPYING file in the top-level directory.
*/

#ifndef QEMU_HOSTDEP_H
#define QEMU_HOSTDEP_H
#ifndef PPC64_HOSTDEP_H
#define PPC64_HOSTDEP_H

/* We have a safe-syscall.inc.S */
#define HAVE_SAFE_SYSCALL
Expand Down
4 changes: 2 additions & 2 deletions linux-user/host/s390/hostdep.h
Expand Up @@ -9,7 +9,7 @@
* See the COPYING file in the top-level directory.
*/

#ifndef QEMU_HOSTDEP_H
#define QEMU_HOSTDEP_H
#ifndef S390_HOSTDEP_H
#define S390_HOSTDEP_H

#endif
4 changes: 2 additions & 2 deletions linux-user/host/s390x/hostdep.h
Expand Up @@ -9,8 +9,8 @@
* See the COPYING file in the top-level directory.
*/

#ifndef QEMU_HOSTDEP_H
#define QEMU_HOSTDEP_H
#ifndef S390X_HOSTDEP_H
#define S390X_HOSTDEP_H

/* We have a safe-syscall.inc.S */
#define HAVE_SAFE_SYSCALL
Expand Down
4 changes: 2 additions & 2 deletions linux-user/host/sparc/hostdep.h
Expand Up @@ -9,7 +9,7 @@
* See the COPYING file in the top-level directory.
*/

#ifndef QEMU_HOSTDEP_H
#define QEMU_HOSTDEP_H
#ifndef SPARC_HOSTDEP_H
#define SPARC_HOSTDEP_H

#endif
4 changes: 2 additions & 2 deletions linux-user/host/sparc64/hostdep.h
Expand Up @@ -9,7 +9,7 @@
* See the COPYING file in the top-level directory.
*/

#ifndef QEMU_HOSTDEP_H
#define QEMU_HOSTDEP_H
#ifndef SPARC64_HOSTDEP_H
#define SPARC64_HOSTDEP_H

#endif
4 changes: 2 additions & 2 deletions linux-user/host/x32/hostdep.h
Expand Up @@ -9,7 +9,7 @@
* See the COPYING file in the top-level directory.
*/

#ifndef QEMU_HOSTDEP_H
#define QEMU_HOSTDEP_H
#ifndef X32_HOSTDEP_H
#define X32_HOSTDEP_H

#endif
4 changes: 2 additions & 2 deletions linux-user/host/x86_64/hostdep.h
Expand Up @@ -9,8 +9,8 @@
* See the COPYING file in the top-level directory.
*/

#ifndef QEMU_HOSTDEP_H
#define QEMU_HOSTDEP_H
#ifndef X86_64_HOSTDEP_H
#define X86_64_HOSTDEP_H

/* We have a safe-syscall.inc.S */
#define HAVE_SAFE_SYSCALL
Expand Down

0 comments on commit 59e96bc

Please sign in to comment.