 e79a7fccfb
			
		
	
	
	e79a7fccfb
	
	
	
		
			
			Move compat_ni_syscall out of ia32entry.S and into its own .c file. Although this is a trivial function, it is not performance-critical, and this will simplify further cleanups. Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
		
			
				
	
	
		
			7 lines
		
	
	
	
		
			102 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
	
		
			102 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
| #include <linux/kernel.h>
 | |
| #include <linux/errno.h>
 | |
| 
 | |
| long compat_ni_syscall(void)
 | |
| {
 | |
| 	return -ENOSYS;
 | |
| }
 |