mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-13 05:54:23 +08:00
95363747a6
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>
17 lines
589 B
C
17 lines
589 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#if defined(__i386__) || defined(__x86_64__)
|
|
#include "../../../arch/x86/include/uapi/asm/errno.h"
|
|
#elif defined(__powerpc__)
|
|
#include "../../../arch/powerpc/include/uapi/asm/errno.h"
|
|
#elif defined(__sparc__)
|
|
#include "../../../arch/sparc/include/uapi/asm/errno.h"
|
|
#elif defined(__alpha__)
|
|
#include "../../../arch/alpha/include/uapi/asm/errno.h"
|
|
#elif defined(__mips__)
|
|
#include "../../../arch/mips/include/uapi/asm/errno.h"
|
|
#elif defined(__hppa__)
|
|
#include "../../../arch/parisc/include/uapi/asm/errno.h"
|
|
#else
|
|
#include <asm-generic/errno.h>
|
|
#endif
|