From: Stefan Herbrechtsmeier Date: Mon, 8 Aug 2022 14:53:31 +0000 (+0200) Subject: fpga: zynq: Remove post config info message for SPL X-Git-Tag: v2023.07~312^2~20^2~40 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7a0bc18b6309be421b7968ee70efb54c9e3d59dd;p=platform%2Fkernel%2Fu-boot.git 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 Link: https://lore.kernel.org/r/20220808145331.24723-1-stefan.herbrechtsmeier-oss@weidmueller.com Signed-off-by: Michal Simek --- diff --git a/drivers/fpga/zynqpl.c b/drivers/fpga/zynqpl.c index d8ebd54..0c83df4 100644 --- a/drivers/fpga/zynqpl.c +++ b/drivers/fpga/zynqpl.c @@ -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; }