diff options
author | Catalin Marinas <[email protected]> | 2010-05-07 10:52:32 +0100 |
---|---|---|
committer | Russell King <[email protected]> | 2010-05-08 10:45:26 +0100 |
commit | e814d826dc1821dbce3aa1ddb7f2f739f420ffd8 (patch) | |
tree | 7e1545203bdb7747ac6f3c4b096ea8081163d480 /arch/arm/lib/copy_to_user.S | |
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 <[email protected]>
Tested-by: Kyungmin Park <[email protected]>
Signed-off-by: Catalin Marinas <[email protected]>
Acked-by: Nicolas Pitre <[email protected]>
Signed-off-by: Russell King <[email protected]>
Diffstat (limited to 'arch/arm/lib/copy_to_user.S')
-rw-r--r-- | arch/arm/lib/copy_to_user.S | 1 |
1 files changed, 1 insertions, 0 deletions
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) #include "copy_template.S" ENDPROC(__copy_to_user) +ENDPROC(__copy_to_user_std) .pushsection .fixup,"ax" .align 0 |