diff options
Diffstat (limited to 'arch/sparc/lib/blockops.S')
| -rw-r--r-- | arch/sparc/lib/blockops.S | 10 | 
1 files changed, 5 insertions, 5 deletions
diff --git a/arch/sparc/lib/blockops.S b/arch/sparc/lib/blockops.S index 804be87f9a4..3c771011ff4 100644 --- a/arch/sparc/lib/blockops.S +++ b/arch/sparc/lib/blockops.S @@ -4,6 +4,7 @@   * Copyright (C) 1996 David S. Miller (davem@caip.rutgers.edu)   */ +#include <linux/linkage.h>  #include <asm/page.h>  	/* Zero out 64 bytes of memory at (buf + offset). @@ -44,10 +45,7 @@  	 */  	.text -	.align	4 -	.globl	bzero_1page, __copy_1page - -bzero_1page: +ENTRY(bzero_1page)  /* NOTE: If you change the number of insns of this routine, please check   * arch/sparc/mm/hypersparc.S */  	/* %o0 = buf */ @@ -65,8 +63,9 @@ bzero_1page:  	retl  	 nop +ENDPROC(bzero_1page) -__copy_1page: +ENTRY(__copy_1page)  /* NOTE: If you change the number of insns of this routine, please check   * arch/sparc/mm/hypersparc.S */  	/* %o0 = dst, %o1 = src */ @@ -87,3 +86,4 @@ __copy_1page:  	retl  	 nop +ENDPROC(__copy_1page)  |