Your ROOT_URL in app.ini is https://src.whiteboxsystems.nl/ but you are visiting http://src.whiteboxsystems.nl/Whitebox/u-boot/commit/da1cd955dfec35b0e15381ad1ee248fa194eed82 You should set ROOT_URL correctly, otherwise the web may not work correctly.

ppc/85xx: Fix up eSDHC controller clock frequency in the device tree

Signed-off-by: Dipen Dudhat <dipen.dudhat@freescale.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
master
Dipen Dudhat 16 years ago committed by Kumar Gala
parent 2abbd31da6
commit da1cd955df
  1. 7
      cpu/mpc85xx/fdt.c

@ -27,6 +27,9 @@
#include <libfdt.h>
#include <fdt_support.h>
#include <asm/processor.h>
#ifdef CONFIG_FSL_ESDHC
#include <fsl_esdhc.h>
#endif
DECLARE_GLOBAL_DATA_PTR;
@ -326,4 +329,8 @@ void ft_cpu_setup(void *blob, bd_t *bd)
#endif
ft_fixup_cache(blob);
#if defined(CONFIG_FSL_ESDHC)
fdt_fixup_esdhc(blob, bd);
#endif
}

Loading…
Cancel
Save