mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 10:40:15 +02:00 
			
		
		
		
	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>
This commit is contained in:
		
							parent
							
								
									4b9d1bc791
								
							
						
					
					
						commit
						95363747a6
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		| 
						 | 
					@ -9,8 +9,8 @@
 | 
				
			||||||
#include "../../../arch/alpha/include/uapi/asm/errno.h"
 | 
					#include "../../../arch/alpha/include/uapi/asm/errno.h"
 | 
				
			||||||
#elif defined(__mips__)
 | 
					#elif defined(__mips__)
 | 
				
			||||||
#include "../../../arch/mips/include/uapi/asm/errno.h"
 | 
					#include "../../../arch/mips/include/uapi/asm/errno.h"
 | 
				
			||||||
#elif defined(__xtensa__)
 | 
					#elif defined(__hppa__)
 | 
				
			||||||
#include "../../../arch/xtensa/include/uapi/asm/errno.h"
 | 
					#include "../../../arch/parisc/include/uapi/asm/errno.h"
 | 
				
			||||||
#else
 | 
					#else
 | 
				
			||||||
#include <asm-generic/errno.h>
 | 
					#include <asm-generic/errno.h>
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue