Home
last modified time | relevance | path

Searched hist:"26 a520b2befb310b9ee23da108854c9d9c294c11" (Results 1 – 1 of 1) sorted by relevance

/rk3399_ARM-atf/plat/arm/board/tc/
H A Dtc_bl2_dpe.c26a520b2befb310b9ee23da108854c9d9c294c11 Wed Jan 29 09:38:45 UTC 2025 Leo Yan <leo.yan@arm.com> fix(tc): fix compilation error

When the SPD_spmd configuration is disabled, the compiler complaints:

plat/arm/board/tc/tc_bl2_dpe.c:234:22: error: unused variable 'array_size' [-Werror=unused-variable]
234 | const size_t array_size = ARRAY_SIZE(tc_dpe_metadata);
| ^~~~~~~~~~
plat/arm/board/tc/tc_bl2_dpe.c:233:16: error: unused variable 'i' [-Werror=unused-variable]
233 | size_t i;
| ^
cc1: all warnings being treated as errors

Move variable declarations into the code chunk protected by the SPD_spmd
configuration.

Change-Id: I1a3889938e2d4ec5efec516e9ef54034f9d711b2
Signed-off-by: Leo Yan <leo.yan@arm.com>