From: Siva Durga Prasad Paladugu Date: Sat, 23 Mar 2019 10:31:36 +0000 (+0530) Subject: arm: zynq: Add an info message about post config X-Git-Url: http://git.cdn.openwrt.org/?a=commitdiff_plain;h=31f7ce7f9bfd41c996b33f7568718462bbfe5b45;p=project%2Fbcm63xx%2Fu-boot.git arm: zynq: Add an info message about post config Post configuration cant be run at u-boot as u-boot didn't has any info about the design.So,this patch adds an info message that post config was not run and needs to be run manually if needed. Signed-off-by: Siva Durga Prasad Paladugu Signed-off-by: Michal Simek --- diff --git a/drivers/fpga/zynqpl.c b/drivers/fpga/zynqpl.c index 683cf14b47..069c63ba45 100644 --- a/drivers/fpga/zynqpl.c +++ b/drivers/fpga/zynqpl.c @@ -408,6 +408,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"); + return FPGA_SUCCESS; }