diff options
| author | Tom Rini <[email protected]> | 2023-01-26 21:57:38 -0500 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2023-01-26 21:57:38 -0500 |
| commit | b3b6cc28c240507503e471edc105e2d93a277126 (patch) | |
| tree | 740f3fb4debf9faecb2e19661d178d88322049e4 /drivers | |
| parent | b6904cc98a9168180bbed5f95d046724a188513c (diff) | |
| parent | 060a65e899859dcbf42049a18be20ce7118e7c0e (diff) | |
Merge tag 'dm-pull-26jan23' of https://source.denx.de/u-boot/custodians/u-boot-dm
FIT improvements with split-elf, especially for Rockchip
Binman positioning by ELF symbol
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/core/dump.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/core/dump.c b/drivers/core/dump.c index 0c7d2ec4d0c..3e77832a3a0 100644 --- a/drivers/core/dump.c +++ b/drivers/core/dump.c @@ -39,7 +39,7 @@ static void show_devices(struct udevice *dev, int depth, int last_flag, u32 flags = dev_get_flags(dev); /* print the first 20 characters to not break the tree-format. */ - printf(IS_ENABLED(CONFIG_SPL_BUILD) ? " %s %d [ %c ] %s " : + printf(CONFIG_IS_ENABLED(USE_TINY_PRINTF) ? " %s %d [ %c ] %s " : " %-10.10s %3d [ %c ] %-20.20s ", dev->uclass->uc_drv->name, dev_get_uclass_index(dev, NULL), flags & DM_FLAG_ACTIVATED ? '+' : ' ', dev->driver->name); |
