[PATCH] cmd: mvebu/bubt: Correct usage of IS_ENABLED() macro
Stefan Roese
sr at denx.de
Thu Feb 27 10:25:32 CET 2025
On 26.02.25 21:31, Tom Rini wrote:
> This file was using IS_ENABLED() to test for CONFIG flags but omitted
> the CONFIG_ prefix and so did not work as expected.
>
> Signed-off-by: Tom Rini <trini at konsulko.com>
> ---
> Cc: Tim Harvey <tharvey at gateworks.com>
> Cc: Stefan Roese <sr at denx.de>
>
> This does change how some platforms are built.
Reviewed-by: Stefan Roese <sr at denx.de>
Thanks,
Stefan
> ---
> cmd/mvebu/bubt.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/cmd/mvebu/bubt.c b/cmd/mvebu/bubt.c
> index 5e4ffc40d729..6b7d9ee061d5 100644
> --- a/cmd/mvebu/bubt.c
> +++ b/cmd/mvebu/bubt.c
> @@ -931,7 +931,7 @@ static int check_image_header(void)
> size = le32_to_cpu(hdr->blocksize);
>
> if (hdr->blockid == 0x78) { /* SATA id */
> - struct blk_desc *blk_dev = IS_ENABLED(BLK) ? blk_get_devnum_by_uclass_id(UCLASS_SCSI, 0) : NULL;
> + struct blk_desc *blk_dev = IS_ENABLED(CONFIG_BLK) ? blk_get_devnum_by_uclass_id(UCLASS_SCSI, 0) : NULL;
> unsigned long blksz = blk_dev ? blk_dev->blksz : 512;
> offset *= blksz;
> }
Viele Grüße,
Stefan Roese
--
DENX Software Engineering GmbH, Managing Director: Erika Unter
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-51 Fax: (+49)-8142-66989-80 Email: sr at denx.de
More information about the U-Boot
mailing list