Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit fc048b5b authored by Al Viro's avatar Al Viro Committed by Linus Torvalds
Browse files

[PATCH] arm: use unsigned long instead of unsigned int in get_user()

parent 35d59fc5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -110,7 +110,7 @@ extern int __get_user_4(void *);
#define get_user(x,p)							\
	({								\
		const register typeof(*(p)) __user *__p asm("r0") = (p);\
		register unsigned int __r2 asm("r2");			\
		register unsigned long __r2 asm("r2");			\
		register int __e asm("r0");				\
		switch (sizeof(*(__p))) {				\
		case 1:							\