[PATCH v1 1/6] fastboot: Fix warning when CONFIG_SYS_64BIT_LBA is enable
Patrick DELAUNAY
patrick.delaunay at foss.st.com
Wed Jan 8 19:48:00 CET 2025
Hi,
On 11/29/24 13:27, Patrice Chotard wrote:
> If CONFIG_SYS_64BIT_LBA is enable, following compilation warning is
> triggered:
>
> CC drivers/fastboot/fb_mmc.o
> ../drivers/fastboot/fb_mmc.c: In function 'fb_mmc_erase_mmc_hwpart':
> ../drivers/fastboot/fb_mmc.c:215:35: warning: format '%lu' expects
> argument of type 'long unsigned int', but argument 2 has type
> 'long long unsigned int' [-Wformat=]
> 215 | printf("........ erased %lu bytes from mmc hwpart[%u]\n",
> | ~~^
> | |
> | long unsigned int
> | %llu
> 216 | dev_desc->lba * dev_desc->blksz, dev_desc->hwpart);
> | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> | |
> | long long unsigned int
> ../drivers/fastboot/fb_mmc.c: In function 'fb_mmc_boot_ops':
> ../drivers/fastboot/fb_mmc.c:261:42: warning: format '%lu' expects
> argument of type 'long unsigned int', but argument 2 has type
> 'long long unsigned int' [-Wformat=]
> 261 | printf("........ wrote %lu bytes to EMMC_BOOT%d\n",
> | ~~^
> | |
> | long unsigned int
> | %llu
> 262 | blkcnt * blksz, hwpart);
> | ~~~~~~~~~~~~~~
> | |
> | long long unsigned int
>
> Signed-off-by: Patrice Chotard <patrice.chotard at foss.st.com>
> ---
>
> drivers/fastboot/fb_mmc.c | 8 ++++----
> 1 file changed, 4 insertions(+), 4 deletions(-)
>
Reviewed-by: Patrick Delaunay <patrick.delaunay at foss.st.com>
Thanks
Patrick
More information about the U-Boot
mailing list