This patch changes the remaining direct references to .data.page_aligned in C and assembly code to use the macros in include/linux/linkage.h. Signed-off-by: Tim Abbott <tabbott@ksplice.com> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: Ingo Molnar <mingo@redhat.com> Cc: H. Peter Anvin <hpa@zytor.com> Cc: Haavard Skinnemoen <hskinnemoen@atmel.com> Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org> Cc: Paul Mackerras <paulus@samba.org> Cc: Martin Schwidefsky <schwidefsky@de.ibm.com> Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
		
			
				
	
	
		
			14 lines
		
	
	
	
		
			250 B
			
		
	
	
	
		
			ArmAsm
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			250 B
			
		
	
	
	
		
			ArmAsm
		
	
	
	
	
	
#include <linux/init.h>
 | 
						|
#include <linux/linkage.h>
 | 
						|
#include <asm/page.h>
 | 
						|
 | 
						|
	__PAGE_ALIGNED_DATA
 | 
						|
 | 
						|
	.globl vdso32_start, vdso32_end
 | 
						|
	.balign PAGE_SIZE
 | 
						|
vdso32_start:
 | 
						|
	.incbin "arch/s390/kernel/vdso32/vdso32.so"
 | 
						|
	.balign PAGE_SIZE
 | 
						|
vdso32_end:
 | 
						|
 | 
						|
	.previous
 |