]> git.sur5r.net Git - u-boot/commitdiff
83xx: searching "muram-data" by compatible property
authorHeiko Schocher <hs@denx.de>
Fri, 24 Apr 2009 04:50:45 +0000 (06:50 +0200)
committerKim Phillips <kim.phillips@freescale.com>
Fri, 24 Apr 2009 19:38:45 +0000 (14:38 -0500)
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 <hs@denx.de>
Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
cpu/mpc83xx/fdt.c

index 4cc90473727ba65a77cec1aaae90b14bf964e390..13443cbd8795684a3b0a876563588dab7b801ecf 100644 (file)
@@ -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