aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
Diffstat (limited to 'arch')
-rw-r--r--arch/blackfin/include/asm/uaccess.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/blackfin/include/asm/uaccess.h b/arch/blackfin/include/asm/uaccess.h
index 5cc111502822..3edb4afa3053 100644
--- a/arch/blackfin/include/asm/uaccess.h
+++ b/arch/blackfin/include/asm/uaccess.h
@@ -216,12 +216,12 @@ copy_to_user(void __user *to, const void *from, unsigned long n)
216 */ 216 */
217 217
218static inline long __must_check 218static inline long __must_check
219strncpy_from_user(char *dst, const char *src, long count) 219strncpy_from_user(char *dst, const char __user *src, long count)
220{ 220{
221 char *tmp; 221 char *tmp;
222 if (!access_ok(VERIFY_READ, src, 1)) 222 if (!access_ok(VERIFY_READ, src, 1))
223 return -EFAULT; 223 return -EFAULT;
224 strncpy(dst, src, count); 224 strncpy(dst, (const char __force *)src, count);
225 for (tmp = dst; *tmp && count > 0; tmp++, count--) ; 225 for (tmp = dst; *tmp && count > 0; tmp++, count--) ;
226 return (tmp - dst); 226 return (tmp - dst);
227} 227}