* [U-Boot] [PATCH] 83xx: searching "muram-data" by compatible property
@ 2009-04-24 4:50 Heiko Schocher
2009-04-24 20:22 ` Kim Phillips
0 siblings, 1 reply; 2+ messages in thread
From: Heiko Schocher @ 2009-04-24 4:50 UTC (permalink / raw)
To: u-boot
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>
---
cpu/mpc83xx/fdt.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/cpu/mpc83xx/fdt.c b/cpu/mpc83xx/fdt.c
index 4cc9047..13443cb 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
--
1.6.0.6
--
DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [U-Boot] [PATCH] 83xx: searching "muram-data" by compatible property
2009-04-24 4:50 [U-Boot] [PATCH] 83xx: searching "muram-data" by compatible property Heiko Schocher
@ 2009-04-24 20:22 ` Kim Phillips
0 siblings, 0 replies; 2+ messages in thread
From: Kim Phillips @ 2009-04-24 20:22 UTC (permalink / raw)
To: u-boot
On Fri, 24 Apr 2009 06:50:45 +0200
Heiko Schocher <hs@denx.de> wrote:
> 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>
> ---
applied, thanks.
Kim
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2009-04-24 20:22 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-04-24 4:50 [U-Boot] [PATCH] 83xx: searching "muram-data" by compatible property Heiko Schocher
2009-04-24 20:22 ` Kim Phillips
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox