[U-Boot] [PATCH v2 02/63] spl: spi: Add a debug message if loading fails
Jagan Teki
jagan at openedev.com
Mon Nov 21 19:27:37 CET 2016
On Sun, Nov 20, 2016 at 1:54 AM, Simon Glass <sjg at chromium.org> wrote:
> This currently fails silently. Add a debug message to aid debugging.
>
> Signed-off-by: Simon Glass <sjg at chromium.org>
> ---
>
> Changes in v2:
> - Show the error value in spl_spi_load_image()
>
> common/spl/spl_spi.c | 5 ++++-
> 1 file changed, 4 insertions(+), 1 deletion(-)
>
> diff --git a/common/spl/spl_spi.c b/common/spl/spl_spi.c
> index a3caafb..255da99 100644
> --- a/common/spl/spl_spi.c
> +++ b/common/spl/spl_spi.c
> @@ -96,8 +96,11 @@ static int spl_spi_load_image(struct spl_image_info *spl_image,
> /* Load u-boot, mkimage header is 64 bytes. */
> err = spi_flash_read(flash, CONFIG_SYS_SPI_U_BOOT_OFFS, 0x40,
> (void *)header);
> - if (err)
> + if (err) {
> + debug("%s: Failed to read from SPI flash (err=%d)\n",
> + __func__, err);
> return err;
For more informative and debug, better to add offset as well.
thanks!
--
Jagan Teki
Free Software Engineer | www.openedev.com
U-Boot, Linux | Upstream Maintainer
Hyderabad, India.
More information about the U-Boot
mailing list