From: Heiko Schocher Date: Fri, 24 Apr 2009 04:50:45 +0000 (+0200) Subject: 83xx: searching "muram-data" by compatible property X-Git-Tag: v2009.06-rc1~32^2 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;ds=sidebyside;h=14b9308d511b53042ef478936e367a67282df66a;hp=8e15088794807944b221c11609d36789efc7f767;p=u-boot 83xx: searching "muram-data" by compatible property if using CONFIG_BOOTCOUNT_LIMIT feature on a MPC8360 CPU in the muram-data node, the reg entry needs to be updated. This is done in fdt_fixup_muram(), but we should use the compatible "fsl,qe-muram-data" for searching the node instead of searching the muram-data node with an absolute path. Signed-off-by: Heiko Schocher Signed-off-by: Kim Phillips --- diff --git a/cpu/mpc83xx/fdt.c b/cpu/mpc83xx/fdt.c index 4cc9047372..13443cbd87 100644 --- a/cpu/mpc83xx/fdt.c +++ b/cpu/mpc83xx/fdt.c @@ -41,8 +41,8 @@ void fdt_fixup_muram (void *blob) data[0] = 0; data[1] = QE_MURAM_SIZE - 2 * sizeof(unsigned long); - do_fixup_by_path(blob, "/qe/muram/data-only", "reg", - data, sizeof (data), 0); + do_fixup_by_compat(blob, "fsl,qe-muram-data", "reg", + data, sizeof (data), 0); } #endif