aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/ar7/patches-3.14/200-free-mem-below-kernel-offset.patch
diff options
context:
space:
mode:
authorJohn Crispin <john@openwrt.org>2015-03-16 07:41:10 +0000
committerJohn Crispin <john@openwrt.org>2015-03-16 07:41:10 +0000
commit46f01fec7f851474ffd2604749b80403ec93d4b6 (patch)
treea3f1454304c0e810989724ac0cd25b5a2f60165e /target/linux/ar7/patches-3.14/200-free-mem-below-kernel-offset.patch
parent4d11bb0d23158ca3141fdbb014635f3b0333d83a (diff)
downloadupstream-46f01fec7f851474ffd2604749b80403ec93d4b6.tar.gz
upstream-46f01fec7f851474ffd2604749b80403ec93d4b6.tar.bz2
upstream-46f01fec7f851474ffd2604749b80403ec93d4b6.zip
ar7: drop 3.14 support
Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 44822
Diffstat (limited to 'target/linux/ar7/patches-3.14/200-free-mem-below-kernel-offset.patch')
-rw-r--r--target/linux/ar7/patches-3.14/200-free-mem-below-kernel-offset.patch15
1 files changed, 0 insertions, 15 deletions
diff --git a/target/linux/ar7/patches-3.14/200-free-mem-below-kernel-offset.patch b/target/linux/ar7/patches-3.14/200-free-mem-below-kernel-offset.patch
deleted file mode 100644
index 4011942d79..0000000000
--- a/target/linux/ar7/patches-3.14/200-free-mem-below-kernel-offset.patch
+++ /dev/null
@@ -1,15 +0,0 @@
---- a/arch/mips/ar7/memory.c
-+++ b/arch/mips/ar7/memory.c
-@@ -66,5 +66,11 @@ void __init prom_meminit(void)
-
- void __init prom_free_prom_memory(void)
- {
-- /* Nothing to free */
-+ /* adapted from arch/mips/txx9/generic/setup.c */
-+ unsigned long saddr = PHYS_OFFSET + PAGE_SIZE;
-+ unsigned long eaddr = __pa_symbol(&_text);
-+
-+ /* free memory between prom-record and kernel _text base */
-+ if (saddr < eaddr)
-+ free_init_pages("prom memory", saddr, eaddr);
- }