cmd: fdt: Drop the 0x prefix
authorMarek Vasut <marek.vasut+renesas@mailbox.org>
Thu, 2 Mar 2023 03:04:40 +0000 (04:04 +0100)
committerSimon Glass <sjg@chromium.org>
Tue, 14 Mar 2023 22:08:51 +0000 (16:08 -0600)
The 'fdt get addr' is always assumed to be hex value, drop the prefix.
Since this might break existing users who depend on the existing
behavior with 0x prefix, this is a separate patch. Revert if this
breaks anything.

Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
cmd/fdt.c

index f38fe90..04b664e 100644 (file)
--- a/cmd/fdt.c
+++ b/cmd/fdt.c
@@ -478,7 +478,7 @@ static int do_fdt(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
                                        /* Get address */
                                        char buf[19];
 
-                                       snprintf(buf, sizeof(buf), "0x%lx",
+                                       snprintf(buf, sizeof(buf), "%lx",
                                                 (ulong)map_to_sysmem(nodep));
                                        env_set(var, buf);
                                } else if (subcmd[0] == 's') {