mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-25 22:20:45 +00:00
firmware: zynqmp: Move loading message to debug
Power domain driver is using this function for every IP which is PD listed. This can end up with a lot of messages which end up in boot log. That's why show it only in EL3 as was used in past. Signed-off-by: Michal Simek <michal.simek@xilinx.com> Link: https://lore.kernel.org/r/d73fc8bc663110b6e8d5e70fdb6435d1199e9db8.1642163135.git.michal.simek@xilinx.com
This commit is contained in:
parent
71efd45a5f
commit
12662e7034
1 changed files with 2 additions and 1 deletions
|
@ -98,7 +98,8 @@ void zynqmp_pmufw_load_config_object(const void *cfg_obj, size_t size)
|
|||
int err;
|
||||
u32 ret_payload[PAYLOAD_ARG_CNT];
|
||||
|
||||
printf("Loading new PMUFW cfg obj (%ld bytes)\n", size);
|
||||
if (IS_ENABLED(CONFIG_SPL_BUILD))
|
||||
printf("Loading new PMUFW cfg obj (%ld bytes)\n", size);
|
||||
|
||||
flush_dcache_range((ulong)cfg_obj, (ulong)(cfg_obj + size));
|
||||
|
||||
|
|
Loading…
Reference in a new issue