From: Luis Araneda Date: Thu, 19 Jul 2018 07:10:16 +0000 (-0400) Subject: spl: fit: display a message when an FPGA image is loaded X-Git-Url: http://git.dujemihanovic.xyz/?a=commitdiff_plain;h=3907eef1a385e52d99d9888de078cd652548a668;p=u-boot.git spl: fit: display a message when an FPGA image is loaded A message should be displayed if an image is loaded to an FPGA, because the hardware might have changed, and the user should be informed Signed-off-by: Luis Araneda Signed-off-by: Michal Simek --- diff --git a/common/spl/spl_fit.c b/common/spl/spl_fit.c index 5b51a28a08..9eabb1c105 100644 --- a/common/spl/spl_fit.c +++ b/common/spl/spl_fit.c @@ -412,6 +412,7 @@ int spl_load_simple_fit(struct spl_image_info *spl_image, printf("%s: Cannot load the FPGA: %i\n", __func__, ret); return ret; } + puts("FPGA image loaded from FIT\n"); node = -1; } #endif