diff options
author | Stafford Horne <shorne@gmail.com> | 2020-08-04 09:57:14 +0900 |
---|---|---|
committer | Stafford Horne <shorne@gmail.com> | 2020-08-09 07:57:09 +0900 |
commit | aac9a9b555b9d84295d2d3637a2d83971c474a1e (patch) | |
tree | 0cb09c6f968532f91179ea6b35397efbc5cb730b /arch/openrisc | |
parent | af84b16e3423bd9c1c8d81c44bc0a217f763f6b7 (diff) |
openrisc: uaccess: Remove unused macro __addr_ok
Since commit b48b2c3e5043 ("openrisc: use generic strnlen_user()
function") the macro __addr_ok is no longer used. It is safe to remove
so this patch removes it.
Signed-off-by: Stafford Horne <shorne@gmail.com>
Diffstat (limited to 'arch/openrisc')
-rw-r--r-- | arch/openrisc/include/asm/uaccess.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/arch/openrisc/include/asm/uaccess.h b/arch/openrisc/include/asm/uaccess.h index 4b59dc9ad300..85a55359b244 100644 --- a/arch/openrisc/include/asm/uaccess.h +++ b/arch/openrisc/include/asm/uaccess.h @@ -55,9 +55,6 @@ static inline int __range_ok(unsigned long addr, unsigned long size) return size <= fs && addr <= (fs - size); } -/* Ensure that addr is below task's addr_limit */ -#define __addr_ok(addr) ((unsigned long) addr < get_fs()) - #define access_ok(addr, size) \ ({ \ __range_ok((unsigned long)(addr), (size)); \ |