]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
arm: zynq: Add an info message about post config
authorSiva Durga Prasad Paladugu <siva.durga.paladugu@xilinx.com>
Sat, 23 Mar 2019 10:31:36 +0000 (16:01 +0530)
committerMichal Simek <michal.simek@xilinx.com>
Mon, 25 Mar 2019 14:39:06 +0000 (15:39 +0100)
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 <siva.durga.paladugu@xilinx.com>
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
drivers/fpga/zynqpl.c

index e35d4921df88426e6695fba11e1bf62de59cff9d..ced9b376520e94064ffde3af5d6e36d69f6d1bcd 100644 (file)
@@ -409,6 +409,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;
 }