summaryrefslogtreecommitdiff
path: root/board
diff options
context:
space:
mode:
authorBin Meng <[email protected]>2021-02-25 17:22:56 +0800
committerPriyanka Jain <[email protected]>2021-03-05 10:25:44 +0530
commitb516dd5af714dabff5e0b20a280a0f0ec91dcecb (patch)
treefbeee6b7fb3942ebe98d7ab372f4b65570b216d4 /board
parentc8f911cb08fcb6216424be5a6904a1ed237c4318 (diff)
ppc: qemu: Drop a custom env variable 'fdt_addr_r'
Now that we have switched to CONFIG_OF_CONTROL, and we can use the env variable 'fdtcontroladdr' directly instead of creating one that is duplicated. Signed-off-by: Bin Meng <[email protected]> Reviewed-by: Priyanka Jain <[email protected]>
Diffstat (limited to 'board')
-rw-r--r--board/freescale/qemu-ppce500/qemu-ppce500.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/board/freescale/qemu-ppce500/qemu-ppce500.c b/board/freescale/qemu-ppce500/qemu-ppce500.c
index 480776a21d1..202b7f657de 100644
--- a/board/freescale/qemu-ppce500/qemu-ppce500.c
+++ b/board/freescale/qemu-ppce500/qemu-ppce500.c
@@ -168,9 +168,6 @@ int last_stage_init(void)
if (prop && (len >= 8))
env_set_hex("qemu_kernel_addr", *prop);
- /* Give the user a variable for the host fdt */
- env_set_hex("fdt_addr_r", (ulong)fdt);
-
return 0;
}