diff options
| author | Marcel Ziswiler <[email protected]> | 2019-03-25 17:18:29 +0100 |
|---|---|---|
| committer | Stefano Babic <[email protected]> | 2019-04-13 20:30:10 +0200 |
| commit | ccdd37130b3cfe8f11532b0b7b24774e2034acf0 (patch) | |
| tree | ac28bd2efaa9a2b580fe5b60b3283c07addf445c | |
| parent | 43bfc499925ee1f49355974409808a227cb4f9a0 (diff) | |
tdx-cfg-block: fix off by one issue
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 <[email protected]>
Acked-by: Max Krummenacher <[email protected]>
Reviewed-by: Igor Opaniuk <[email protected]>
| -rw-r--r-- | board/toradex/common/tdx-cfg-block.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/toradex/common/tdx-cfg-block.c b/board/toradex/common/tdx-cfg-block.c index 2fcb998ae44..b90077bedc0 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; |
