Reviewed-by: Igor Opaniuk <igor.opan...@toradex.com>

On Fri, 1 Feb 2019 at 17:25, Marcel Ziswiler <mar...@ziswiler.com> wrote:
>
> From: Marcel Ziswiler <marcel.ziswi...@toradex.com>
>
> Fix toradex_modules array off by one issue potentially leading to
> spurious printout during boot e.g.
>
>     Model: Toradex  V1.2A,
>
> instead of
>
>     Model: Toradex UNKNOWN MODULE V1.2A.
>
> Signed-off-by: Marcel Ziswiler <marcel.ziswi...@toradex.com>
> Acked-by: Max Krummenacher <max.krummenac...@toradex.com>
>
> ---
>
>  board/toradex/common/tdx-cfg-block.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/board/toradex/common/tdx-cfg-block.c 
> b/board/toradex/common/tdx-cfg-block.c
> index 2fcb998ae4..b90077bedc 100644
> --- a/board/toradex/common/tdx-cfg-block.c
> +++ b/board/toradex/common/tdx-cfg-block.c
> @@ -261,7 +261,7 @@ int read_tdx_cfg_block(void)
>         }
>
>         /* Cap product id to avoid issues with a yet unknown one */
> -       if (tdx_hw_tag.prodid > (sizeof(toradex_modules) /
> +       if (tdx_hw_tag.prodid >= (sizeof(toradex_modules) /
>                                   sizeof(toradex_modules[0])))
>                 tdx_hw_tag.prodid = 0;
>
> --
> 2.20.1
>
> _______________________________________________
> U-Boot mailing list
> U-Boot@lists.denx.de
> https://lists.denx.de/listinfo/u-boot
_______________________________________________
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot

Reply via email to