From 51c12319b44a9fdb12192cb2d97efe32fce8ca49 Mon Sep 17 00:00:00 2001 From: Michal Simek Date: Thu, 4 Oct 2018 09:30:20 +0200 Subject: [PATCH] spl: spi: Do not hardcode fixed size for header Find out size directly from header structure. Signed-off-by: Michal Simek --- common/spl/spl_spi.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/common/spl/spl_spi.c b/common/spl/spl_spi.c index ddc33fd..8cd4830 100644 --- a/common/spl/spl_spi.c +++ b/common/spl/spl_spi.c @@ -28,7 +28,7 @@ static int spi_load_image_os(struct spl_image_info *spl_image, int err; /* Read for a header, parse or error out. */ - spi_flash_read(flash, CONFIG_SYS_SPI_KERNEL_OFFS, 0x40, + spi_flash_read(flash, CONFIG_SYS_SPI_KERNEL_OFFS, sizeof(*header), (void *)header); if (image_get_magic(header) != IH_MAGIC) @@ -88,7 +88,7 @@ static int spl_spi_load_image(struct spl_image_info *spl_image, return -ENODEV; } - header = spl_get_load_buffer(-sizeof(*header), 0x40); + header = spl_get_load_buffer(-sizeof(*header), sizeof(*header)); #if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA) payload_offs = fdtdec_get_config_int(gd->fdt_blob, @@ -101,7 +101,7 @@ static int spl_spi_load_image(struct spl_image_info *spl_image, #endif { /* Load u-boot, mkimage header is 64 bytes. */ - err = spi_flash_read(flash, payload_offs, 0x40, + err = spi_flash_read(flash, payload_offs, sizeof(*header), (void *)header); if (err) { debug("%s: Failed to read from SPI flash (err=%d)\n",