summaryrefslogtreecommitdiff
path: root/target/linux/patches/4.3.5/h8300.patch
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@uclibc-ng.org>2016-02-20 22:07:53 +0100
committerWaldemar Brodkorb <wbx@uclibc-ng.org>2016-02-20 22:07:53 +0100
commit3430a34a89f7fe2b49ad572fa094e1a8c0f83128 (patch)
tree7bd615e0b1919767ea4815053876e14eb8c79b97 /target/linux/patches/4.3.5/h8300.patch
parentdf2a309446830f36b688cba5b777e996792aa14e (diff)
kernel: update to latest
Diffstat (limited to 'target/linux/patches/4.3.5/h8300.patch')
-rw-r--r--target/linux/patches/4.3.5/h8300.patch29
1 files changed, 0 insertions, 29 deletions
diff --git a/target/linux/patches/4.3.5/h8300.patch b/target/linux/patches/4.3.5/h8300.patch
deleted file mode 100644
index fc45e6529..000000000
--- a/target/linux/patches/4.3.5/h8300.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-diff -Nur linux-4.3.orig/include/asm-generic/uaccess.h linux-4.3/include/asm-generic/uaccess.h
---- linux-4.3.orig/include/asm-generic/uaccess.h 2015-11-02 01:05:25.000000000 +0100
-+++ linux-4.3/include/asm-generic/uaccess.h 2015-11-17 13:01:11.745876944 +0100
-@@ -163,9 +163,10 @@
-
- #define put_user(x, ptr) \
- ({ \
-+ __typeof__((ptr)) __p = (ptr); \
- might_fault(); \
-- access_ok(VERIFY_WRITE, ptr, sizeof(*ptr)) ? \
-- __put_user(x, ptr) : \
-+ access_ok(VERIFY_WRITE, __p, sizeof(*__p)) ? \
-+ __put_user((x), __p) : \
- -EFAULT; \
- })
-
-@@ -225,9 +226,10 @@
-
- #define get_user(x, ptr) \
- ({ \
-+ __typeof__((ptr)) __p = (ptr); \
- might_fault(); \
-- access_ok(VERIFY_READ, ptr, sizeof(*ptr)) ? \
-- __get_user(x, ptr) : \
-+ access_ok(VERIFY_READ, __p, sizeof(*__p)) ? \
-+ __get_user((x), __p) : \
- -EFAULT; \
- })
-