Skip to content
Snippets Groups Projects
Commit 14b9308d authored by Heiko Schocher's avatar Heiko Schocher Committed by Kim Phillips
Browse files

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: default avatarHeiko Schocher <hs@denx.de>
Signed-off-by: default avatarKim Phillips <kim.phillips@freescale.com>
parent 8e150887
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment