aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorBen Hutchings <benh@debian.org>2020-08-25 23:27:40 +0100
committerHelge Deller <deller@gmx.de>2022-09-13 14:04:35 +0200
commit95363747a6f39e88a3052fcf6ce6237769495ce0 (patch)
treea2c123bd3738caf9979ec0fc815ffd13d7c294b2 /tools
parentInput: hp_sdc: fix spelling typo in comment (diff)
downloadlinux-dev-95363747a6f39e88a3052fcf6ce6237769495ce0.tar.xz
linux-dev-95363747a6f39e88a3052fcf6ce6237769495ce0.zip
tools/include/uapi: Fix <asm/errno.h> for parisc and xtensa
tools/include/uapi/asm/errno.h currently attempts to include non-existent arch-specific errno.h header for xtensa. Remove this case so that <asm-generic/errno.h> is used instead, and add the missing arch-specific header for parisc. References: https://buildd.debian.org/status/fetch.php?pkg=linux&arch=ia64&ver=5.8.3-1%7Eexp1&stamp=1598340829&raw=1 Signed-off-by: Ben Hutchings <benh@debian.org> Signed-off-by: Salvatore Bonaccorso <carnil@debian.org> Cc: <stable@vger.kernel.org> # 5.10+ Signed-off-by: Helge Deller <deller@gmx.de>
Diffstat (limited to 'tools')
-rw-r--r--tools/include/uapi/asm/errno.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/include/uapi/asm/errno.h b/tools/include/uapi/asm/errno.h
index d30439b4b8ab..869379f91fe4 100644
--- a/tools/include/uapi/asm/errno.h
+++ b/tools/include/uapi/asm/errno.h
@@ -9,8 +9,8 @@
#include "../../../arch/alpha/include/uapi/asm/errno.h"
#elif defined(__mips__)
#include "../../../arch/mips/include/uapi/asm/errno.h"
-#elif defined(__xtensa__)
-#include "../../../arch/xtensa/include/uapi/asm/errno.h"
+#elif defined(__hppa__)
+#include "../../../arch/parisc/include/uapi/asm/errno.h"
#else
#include <asm-generic/errno.h>
#endif