From abaa8bcea1efa689e71d2baddf174e0ddf1d4724 Mon Sep 17 00:00:00 2001 From: Matt Waddel Date: Tue, 23 Oct 2007 14:37:54 +1000 Subject: [PATCH] --- yaml --- r: 72155 b: refs/heads/master c: fa2eae93a591b392d1056f95024516cede916ad4 h: refs/heads/master i: 72153: 76f162ecc860f43744c6f4a01b410007751f0f3c 72151: 2513f2f79bc53a7f65203842231d4df2d3a86ba9 v: v3 --- [refs] | 2 +- trunk/include/asm-m68knommu/uaccess.h | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/[refs] b/[refs] index ac75cfc9f82b..8732de4e436a 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 151941a800fd9598d38f8b5a73de0471afe66507 +refs/heads/master: fa2eae93a591b392d1056f95024516cede916ad4 diff --git a/trunk/include/asm-m68knommu/uaccess.h b/trunk/include/asm-m68knommu/uaccess.h index 9ed9169a8849..68bbe9b312f1 100644 --- a/trunk/include/asm-m68knommu/uaccess.h +++ b/trunk/include/asm-m68knommu/uaccess.h @@ -170,10 +170,12 @@ static inline long strnlen_user(const char *src, long n) */ static inline unsigned long -clear_user(void *to, unsigned long n) +__clear_user(void *to, unsigned long n) { memset(to, 0, n); return 0; } +#define clear_user(to,n) __clear_user(to,n) + #endif /* _M68KNOMMU_UACCESS_H */