diff options
author | Russell King <rmk@dyn-67.arm.linux.org.uk> | 2006-06-21 14:44:52 +0100 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2006-06-28 17:53:27 +0100 |
commit | 02fcb974369d21c3df61d4ac5a2e1a58dce86495 (patch) | |
tree | cdf04f4ccdb39049ba4399c21130fc2f663cf2e9 /arch/arm/lib/clear_user.S | |
parent | a39727f212426b9d5f9267b3318a2afaf9922d3b (diff) | |
download | blackbird-op-linux-02fcb974369d21c3df61d4ac5a2e1a58dce86495.tar.gz blackbird-op-linux-02fcb974369d21c3df61d4ac5a2e1a58dce86495.zip |
[ARM] Remove the __arch_* layer from uaccess.h
Back in the days when we had armo (26-bit) and armv (32-bit) combined,
we had an additional layer to the uaccess macros to ensure correct
typing. Since we no longer have 26-bit in this tree, we no longer
need this layer, so eliminate it.
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/lib/clear_user.S')
-rw-r--r-- | arch/arm/lib/clear_user.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/lib/clear_user.S b/arch/arm/lib/clear_user.S index ea435ae2e4a5..ecb28dcdaf7b 100644 --- a/arch/arm/lib/clear_user.S +++ b/arch/arm/lib/clear_user.S @@ -12,13 +12,13 @@ .text -/* Prototype: int __arch_clear_user(void *addr, size_t sz) +/* Prototype: int __clear_user(void *addr, size_t sz) * Purpose : clear some user memory * Params : addr - user memory address to clear * : sz - number of bytes to clear * Returns : number of bytes NOT cleared */ -ENTRY(__arch_clear_user) +ENTRY(__clear_user) stmfd sp!, {r1, lr} mov r2, #0 cmp r1, #4 |