commit | c625666ea10d88141546807f1b720703ba710eea | [log] [tgz] |
---|---|---|
author | Simon Glass <sjg@chromium.org> | Sun May 08 04:39:21 2022 -0600 |
committer | Simon Glass <sjg@chromium.org> | Tue Jun 28 03:09:52 2022 +0100 |
tree | 2c9c18eb46aa1081bd88c6d40e094dd675b41f89 | |
parent | dee2f5ae5cde41a5f9da7f154b47bfe92f531957 [diff] |
dm: core: Fix addresses in the dm static command This command converts pointers to addresses, but the pointers being converted are in the image's rodata region. For sandbox this means it is not in DRAM so it does not make sense to do this conversion. Fix this by showing a simple pointer instead. Drop the unnecessary @ and hex prefixes. Signed-off-by: Simon Glass <sjg@chromium.org>