summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorWarner Losh <imp@bsdimp.com>2021-09-23 08:28:24 -0600
committerWarner Losh <imp@bsdimp.com>2022-01-07 22:58:51 -0700
commitc186aa67de050ebde0edb23634e356b4e466a76f (patch)
treeb3d74bf69bc39f5db3fc0ac8f60396637a416dd8
parent108fffe53601d46c38efd44d4094bbb211cb73e3 (diff)
downloadfocaccia-qemu-c186aa67de050ebde0edb23634e356b4e466a76f.tar.gz
focaccia-qemu-c186aa67de050ebde0edb23634e356b4e466a76f.zip
bsd-user/arm/target_arch_sysarch.h: Use consistent include guards
As part of upstreaming, the include guards have been made more
consistent. Update this file to use the new guards.

Signed-off-by: Warner Losh <imp@bsdimp.com>
Reviewed-by: Kyle Evans <kevans@FreeBSD.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
-rw-r--r--bsd-user/arm/target_arch_sysarch.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/bsd-user/arm/target_arch_sysarch.h b/bsd-user/arm/target_arch_sysarch.h
index 632a5cd453..8cc6bff207 100644
--- a/bsd-user/arm/target_arch_sysarch.h
+++ b/bsd-user/arm/target_arch_sysarch.h
@@ -17,8 +17,8 @@
  *  along with this program; if not, see <http://www.gnu.org/licenses/>.
  */
 
-#ifndef BSD_USER_ARCH_SYSARCH_H_
-#define BSD_USER_ARCH_SYSARCH_H_
+#ifndef _TARGET_ARCH_SYSARCH_H_
+#define _TARGET_ARCH_SYSARCH_H_
 
 #include "target_syscall.h"
 #include "target_arch.h"
@@ -75,4 +75,4 @@ static inline void do_freebsd_arch_print_sysarch(
     }
 }
 
-#endif /*!BSD_USER_ARCH_SYSARCH_H_ */
+#endif /*!_TARGET_ARCH_SYSARCH_H_ */