523377082428ef1d6f3ca9e434cee7b43d8d30ec
[openwrt.git] / target / linux / ramips / patches-3.14 / 0018-MIPS-ralink-workaround-DTB-memory-issue.patch
1 From 35297af46f17092785930f32a616331c8df8f75c Mon Sep 17 00:00:00 2001
2 From: John Crispin <blogic@openwrt.org>
3 Date: Thu, 23 May 2013 18:50:56 +0200
4 Subject: [PATCH 18/57] MIPS: ralink: workaround DTB memory issue
5
6 If the DTB is too big a bug happens on boot when init ram is freed.
7 This is a temporary fix until the real cause is found.
8
9 Signed-off-by: John Crispin <blogic@openwrt.org>
10 ---
11  arch/mips/ralink/of.c |    2 +-
12  1 file changed, 1 insertion(+), 1 deletion(-)
13
14 --- a/arch/mips/ralink/of.c
15 +++ b/arch/mips/ralink/of.c
16 @@ -75,7 +75,7 @@ void __init device_tree_init(void)
17         unflatten_device_tree();
18  
19         /* free the space reserved for the dt blob */
20 -       free_bootmem(base, size);
21 +       //free_bootmem(base, size);
22  }
23  
24  static int memory_dtb;