diff options
author | Felix Fietkau <nbd@openwrt.org> | 2015-11-07 16:22:08 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2015-11-07 16:22:08 +0000 |
commit | ad133b57a94165e1289ac63b38139047a1450dbb (patch) | |
tree | b59d5e2f60aface2db357eef2bd87d5d448c26a3 /target/linux/generic/patches-4.0/060-mips_decompressor_memmove.patch | |
parent | 86a46a817ba7cfab4963818f9c97508f1f835762 (diff) | |
download | upstream-ad133b57a94165e1289ac63b38139047a1450dbb.tar.gz upstream-ad133b57a94165e1289ac63b38139047a1450dbb.tar.bz2 upstream-ad133b57a94165e1289ac63b38139047a1450dbb.zip |
kernel: remove linux 4.0 support
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 47412
Diffstat (limited to 'target/linux/generic/patches-4.0/060-mips_decompressor_memmove.patch')
-rw-r--r-- | target/linux/generic/patches-4.0/060-mips_decompressor_memmove.patch | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/target/linux/generic/patches-4.0/060-mips_decompressor_memmove.patch b/target/linux/generic/patches-4.0/060-mips_decompressor_memmove.patch deleted file mode 100644 index d215b80ab2..0000000000 --- a/target/linux/generic/patches-4.0/060-mips_decompressor_memmove.patch +++ /dev/null @@ -1,22 +0,0 @@ ---- a/arch/mips/boot/compressed/string.c -+++ b/arch/mips/boot/compressed/string.c -@@ -26,3 +26,19 @@ void *memset(void *s, int c, size_t n) - ss[i] = c; - return s; - } -+ -+void *memmove(void *__dest, __const void *__src, size_t count) -+{ -+ unsigned char *d = __dest; -+ const unsigned char *s = __src; -+ -+ if (__dest == __src) -+ return __dest; -+ -+ if (__dest < __src) -+ return memcpy(__dest, __src, count); -+ -+ while (count--) -+ d[count] = s[count]; -+ return __dest; -+} |