 7167af7ceb
			
		
	
	
	7167af7ceb
	
	
	
		
			
			ABIv2 doesn't have function descriptors or dot symbols. One new thing it does add is a function global and a local entry point, so add that to our _GLOBAL macro. Signed-off-by: Anton Blanchard <anton@samba.org>
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			483 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			483 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
| #ifndef _ASM_POWERPC_LINKAGE_H
 | |
| #define _ASM_POWERPC_LINKAGE_H
 | |
| 
 | |
| #ifdef CONFIG_PPC64
 | |
| #if !defined(_CALL_ELF) || _CALL_ELF != 2
 | |
| #define cond_syscall(x) \
 | |
| 	asm ("\t.weak " #x "\n\t.set " #x ", sys_ni_syscall\n"		\
 | |
| 	     "\t.weak ." #x "\n\t.set ." #x ", .sys_ni_syscall\n")
 | |
| #define SYSCALL_ALIAS(alias, name)					\
 | |
| 	asm ("\t.globl " #alias "\n\t.set " #alias ", " #name "\n"	\
 | |
| 	     "\t.globl ." #alias "\n\t.set ." #alias ", ." #name)
 | |
| #endif
 | |
| #endif
 | |
| 
 | |
| #endif	/* _ASM_POWERPC_LINKAGE_H */
 |