mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-02-16 14:08:45 +00:00
fpga: zynq: Remove post config info message for SPL
The drivers informs the user that a post config was not run after FPGA configuration. This message is unnecessary in SPL because the ps7_post_config function is called via spl_board_prepare_for_boot function before jump_to_image_no_args function from board_init_r function. Signed-off-by: Stefan Herbrechtsmeier <stefan.herbrechtsmeier@weidmueller.com> Link: https://lore.kernel.org/r/20220808145331.24723-1-stefan.herbrechtsmeier-oss@weidmueller.com Signed-off-by: Michal Simek <michal.simek@amd.com>
This commit is contained in:
parent
b7e0750d88
commit
7a0bc18b63
1 changed files with 2 additions and 1 deletions
|
@ -413,7 +413,8 @@ static int zynq_load(xilinx_desc *desc, const void *buf, size_t bsize,
|
|||
if (bstype != BIT_PARTIAL)
|
||||
zynq_slcr_devcfg_enable();
|
||||
|
||||
puts("INFO:post config was not run, please run manually if needed\n");
|
||||
if (!IS_ENABLED(CONFIG_SPL_BUILD))
|
||||
puts("INFO:post config was not run, please run manually if needed\n");
|
||||
|
||||
return FPGA_SUCCESS;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue