0002-MIPS-lantiq-dtb-image-hack.patch 921 B

12345678910111213141516171819202122232425262728293031
  1. From 17348293f7f8103c97c8d2a6b0ef36eae06ec371 Mon Sep 17 00:00:00 2001
  2. From: John Crispin <blogic@openwrt.org>
  3. Date: Wed, 13 Mar 2013 09:36:16 +0100
  4. Subject: [PATCH 02/36] MIPS: lantiq: dtb image hack
  5. Signed-off-by: John Crispin <blogic@openwrt.org>
  6. ---
  7. arch/mips/lantiq/Makefile | 2 --
  8. arch/mips/lantiq/prom.c | 4 +++-
  9. 2 files changed, 3 insertions(+), 3 deletions(-)
  10. --- a/arch/mips/lantiq/prom.c
  11. +++ b/arch/mips/lantiq/prom.c
  12. @@ -58,6 +58,8 @@ static void __init prom_init_cmdline(voi
  13. }
  14. }
  15. +extern struct boot_param_header __image_dtb;
  16. +
  17. void __init plat_mem_setup(void)
  18. {
  19. ioport_resource.start = IOPORT_RESOURCE_START;
  20. @@ -71,7 +73,7 @@ void __init plat_mem_setup(void)
  21. * Load the builtin devicetree. This causes the chosen node to be
  22. * parsed resulting in our memory appearing
  23. */
  24. - __dt_setup_arch(__dtb_start);
  25. + __dt_setup_arch(&__image_dtb);
  26. }
  27. void __init device_tree_init(void)