fix(st-clock): correct types in error messages

Replace wrong %d with the correct types.
This issue was found with the compilation flag:
-Wformat-signedness

Change-Id: Iec3817a245f964ce444b59561b777ce06c51a60a
Signed-off-by: Yann Gautier <yann.gautier@foss.st.com>
This commit is contained in:
Yann Gautier 2021-09-07 09:05:44 +02:00 committed by Yann Gautier
parent b208e3da04
commit 44fb470b7f
1 changed files with 3 additions and 3 deletions

View File

@ -698,7 +698,7 @@ static int stm32mp1_clk_get_gated_id(unsigned long id)
}
}
ERROR("%s: clk id %d not found\n", __func__, (uint32_t)id);
ERROR("%s: clk id %lu not found\n", __func__, id);
return -EINVAL;
}
@ -1113,7 +1113,7 @@ void __stm32mp1_clk_enable(unsigned long id, bool secure)
i = stm32mp1_clk_get_gated_id(id);
if (i < 0) {
ERROR("Clock %d can't be enabled\n", (uint32_t)id);
ERROR("Clock %lu can't be enabled\n", id);
panic();
}
@ -1141,7 +1141,7 @@ void __stm32mp1_clk_disable(unsigned long id, bool secure)
i = stm32mp1_clk_get_gated_id(id);
if (i < 0) {
ERROR("Clock %d can't be disabled\n", (uint32_t)id);
ERROR("Clock %lu can't be disabled\n", id);
panic();
}