X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=include%2Fasm-m32r%2Fuaccess.h;h=1c7047bea2002b013ab779a8c752654b9a2a9c23;hb=de2cf591bc876f7a63809d8955855ab074588c30;hp=bd8c83765a5c66361c8bfc35e0ee172ec5cd3f87;hpb=4935361766cc73949fe032cd157d314f288922ba;p=firefly-linux-kernel-4.4.55.git diff --git a/include/asm-m32r/uaccess.h b/include/asm-m32r/uaccess.h index bd8c83765a5c..1c7047bea200 100644 --- a/include/asm-m32r/uaccess.h +++ b/include/asm-m32r/uaccess.h @@ -14,6 +14,7 @@ #include #include #include +#include #define VERIFY_READ 0 #define VERIFY_WRITE 1 @@ -106,7 +107,6 @@ static inline void set_fs(mm_segment_t s) #else static inline int access_ok(int type, const void *addr, unsigned long size) { - extern unsigned long memory_start, memory_end; unsigned long val = (unsigned long)addr; return ((val >= memory_start) && ((val + size) < memory_end));