summaryrefslogtreecommitdiffstats
path: root/linux-user/sparc
diff options
context:
space:
mode:
authorPhilippe Mathieu-Daudé2021-07-08 19:05:44 +0200
committerLaurent Vivier2021-07-12 21:53:35 +0200
commitf007472331068f35e1cf3dca9adb87a4c1df59e8 (patch)
treea89f42429cb64939464d5fffeef654534617d84c /linux-user/sparc
parentlinux-user/syscall: Fix RF-kill errno (typo in ERFKILL) (diff)
downloadqemu-f007472331068f35e1cf3dca9adb87a4c1df59e8.tar.gz
qemu-f007472331068f35e1cf3dca9adb87a4c1df59e8.tar.xz
qemu-f007472331068f35e1cf3dca9adb87a4c1df59e8.zip
linux-user/sparc: Rename target_errno.h -> target_errno_defs.h
We want to have one generic target_errno.h (API to access target errno), and will add target errno definitions in target_errno_defs.h. The sparc target already have its errnos in an header, simply rename it. Reviewed-by: Laurent Vivier <laurent@vivier.eu> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Message-Id: <20210708170550.1846343-3-f4bug@amsat.org> Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'linux-user/sparc')
-rw-r--r--linux-user/sparc/target_errno_defs.h (renamed from linux-user/sparc/target_errno.h)4
-rw-r--r--linux-user/sparc/target_syscall.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/linux-user/sparc/target_errno.h b/linux-user/sparc/target_errno_defs.h
index 9b846899cd..e000810986 100644
--- a/linux-user/sparc/target_errno.h
+++ b/linux-user/sparc/target_errno_defs.h
@@ -1,5 +1,5 @@
-#ifndef SPARC_TARGET_ERRNO_H
-#define SPARC_TARGET_ERRNO_H
+#ifndef SPARC_TARGET_ERRNO_DEFS_H
+#define SPARC_TARGET_ERRNO_DEFS_H
/* Target errno definitions taken from asm-sparc/errno.h */
#undef TARGET_EWOULDBLOCK
diff --git a/linux-user/sparc/target_syscall.h b/linux-user/sparc/target_syscall.h
index 15d531f389..dad501d008 100644
--- a/linux-user/sparc/target_syscall.h
+++ b/linux-user/sparc/target_syscall.h
@@ -1,7 +1,7 @@
#ifndef SPARC_TARGET_SYSCALL_H
#define SPARC_TARGET_SYSCALL_H
-#include "target_errno.h"
+#include "target_errno_defs.h"
#if defined(TARGET_SPARC64) && !defined(TARGET_ABI32)
struct target_pt_regs {