diff options
author | Paul Mundt <lethal@linux-sh.org> | 2007-11-23 13:55:02 +0900 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2008-01-28 13:18:56 +0900 |
commit | 0dcb957db5eb658d636097a9283dabdbf59de283 (patch) | |
tree | 5775062302252ff6cc400dbda82a484a4b013bf1 /arch/sh/lib | |
parent | 35a74499a4f5abbfcdf85629d696c8cfdbd2167f (diff) | |
download | linux-3.10-0dcb957db5eb658d636097a9283dabdbf59de283.tar.gz linux-3.10-0dcb957db5eb658d636097a9283dabdbf59de283.tar.bz2 linux-3.10-0dcb957db5eb658d636097a9283dabdbf59de283.zip |
sh: Build fixes for lib32 clear_page.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/lib')
-rw-r--r-- | arch/sh/lib/clear_page.S | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/sh/lib/clear_page.S b/arch/sh/lib/clear_page.S index 7a7c81ee3f0..36d44ef2b8a 100644 --- a/arch/sh/lib/clear_page.S +++ b/arch/sh/lib/clear_page.S @@ -9,10 +9,10 @@ #include <asm/page.h> /* - * clear_page_slow + * clear_page * @to: P1 address * - * void clear_page_slow(void *to) + * void clear_page(void *to) */ /* @@ -20,7 +20,7 @@ * r4 --- to * r5 --- to + PAGE_SIZE */ -ENTRY(clear_page_slow) +ENTRY(clear_page) mov r4,r5 mov.l .Llimit,r0 add r0,r5 |