0104-MIPS-ralink-workaround-DTB-memory-issue.patch 758 B

123456789101112131415161718192021222324
  1. From b83808826ac7a5c727f5314b5a3bf07fcd6ec929 Mon Sep 17 00:00:00 2001
  2. From: John Crispin <[email protected]>
  3. Date: Thu, 23 May 2013 18:50:56 +0200
  4. Subject: [PATCH 104/133] MIPS: ralink: workaround DTB memory issue
  5. If the DTB is too big a bug happens on boot when init ram is freed.
  6. This is a temporary fix until the real cause is found.
  7. Signed-off-by: John Crispin <[email protected]>
  8. ---
  9. arch/mips/ralink/of.c | 2 +-
  10. 1 file changed, 1 insertion(+), 1 deletion(-)
  11. --- a/arch/mips/ralink/of.c
  12. +++ b/arch/mips/ralink/of.c
  13. @@ -74,7 +74,7 @@ void __init device_tree_init(void)
  14. unflatten_device_tree();
  15. /* free the space reserved for the dt blob */
  16. - free_bootmem(base, size);
  17. + //free_bootmem(base, size);
  18. }
  19. void __init plat_mem_setup(void)