diff options
| author | Catalin Marinas <catalin.marinas@arm.com> | 2010-05-07 05:52:32 -0400 |
|---|---|---|
| committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2010-05-08 05:45:26 -0400 |
| commit | e814d826dc1821dbce3aa1ddb7f2f739f420ffd8 (patch) | |
| tree | 7e1545203bdb7747ac6f3c4b096ea8081163d480 | |
| parent | b8349b569aae661dea9d59d7d2ee587ccea3336c (diff) | |
ARM: 6110/1: Fix Thumb-2 kernel builds when UACCESS_WITH_MEMCPY is enabled
The patch adds the ENDPROC declarations for the __copy_to_user_std and
__clear_user_std functions. Without these, the compiler generates BXL to
ARM when compiling the kernel in Thumb-2 mode.
Reported-by: Kyungmin Park <kmpark@infradead.org>
Tested-by: Kyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
Acked-by: Nicolas Pitre <nico@fluxnic.net>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
| -rw-r--r-- | arch/arm/lib/clear_user.S | 1 | ||||
| -rw-r--r-- | arch/arm/lib/copy_to_user.S | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/lib/clear_user.S b/arch/arm/lib/clear_user.S index 5e3f99620c04..14a0d988c82c 100644 --- a/arch/arm/lib/clear_user.S +++ b/arch/arm/lib/clear_user.S | |||
| @@ -45,6 +45,7 @@ USER( strnebt r2, [r0]) | |||
| 45 | mov r0, #0 | 45 | mov r0, #0 |
| 46 | ldmfd sp!, {r1, pc} | 46 | ldmfd sp!, {r1, pc} |
| 47 | ENDPROC(__clear_user) | 47 | ENDPROC(__clear_user) |
| 48 | ENDPROC(__clear_user_std) | ||
| 48 | 49 | ||
| 49 | .pushsection .fixup,"ax" | 50 | .pushsection .fixup,"ax" |
| 50 | .align 0 | 51 | .align 0 |
diff --git a/arch/arm/lib/copy_to_user.S b/arch/arm/lib/copy_to_user.S index 027b69bdbad1..d066df686e17 100644 --- a/arch/arm/lib/copy_to_user.S +++ b/arch/arm/lib/copy_to_user.S | |||
| @@ -93,6 +93,7 @@ WEAK(__copy_to_user) | |||
| 93 | #include "copy_template.S" | 93 | #include "copy_template.S" |
| 94 | 94 | ||
| 95 | ENDPROC(__copy_to_user) | 95 | ENDPROC(__copy_to_user) |
| 96 | ENDPROC(__copy_to_user_std) | ||
| 96 | 97 | ||
| 97 | .pushsection .fixup,"ax" | 98 | .pushsection .fixup,"ax" |
| 98 | .align 0 | 99 | .align 0 |
