Home
last modified time | relevance | path

Searched hist:"00 a2b8c72d9d4de3deddb6dc2633eff774c8c6b7" (Results 1 – 1 of 1) sorted by relevance

/optee_os/core/kernel/
H A Ddt_driver.c00a2b8c72d9d4de3deddb6dc2633eff774c8c6b7 Mon Apr 28 12:36:06 UTC 2025 Jerome Forissier <jerome.forissier@linaro.org> core: kernel: dt_driver: variable may be unused

Fix the following warning with Clang 18.6.1:

core/kernel/dt_driver.c:456:15: error: variable 'count' set but not used [-Werror,-Wunused-but-set-variable]
456 | unsigned int count = 0;
| ^

Indeed, when CFG_TEE_CORE_LOG_LEVEL <= 2, the value of count is never
read.

Signed-off-by: Jerome Forissier <jerome.forissier@linaro.org>
Acked-by: Jens Wiklander <jens.wiklander@linaro.org>
Acked-by: Gatien Chevallier <gatien.chevallier@foss.st.com>