arch/ceva: Add missing comma

This patch fixes following error, fond by cppcheck.

up_hardfault.c:103:0: error: failed to expand 'hfdumpreg4',
 Wrong number of parameters for macro 'hfdumpreg4'

Signed-off-by: Masanari Iida <standby24x7@gmail.com>
This commit is contained in:
Masanari Iida 2022-08-20 14:35:40 +09:00 committed by Xiang Xiao
parent bd584332a4
commit 49c50d3bf4

View File

@ -100,7 +100,7 @@ int up_hardfault(int irq, void *context, void *arg)
/* Dump some hard fault info */ /* Dump some hard fault info */
hfalert("Hard Fault:\n"); hfalert("Hard Fault:\n");
hfdumpreg4(P_ECADD P_MAPAR, P_MAPSR, P_MECCCOR); hfdumpreg4(P_ECADD, P_MAPAR, P_MAPSR, P_MECCCOR);
hfdumpreg4(D_ECCCOR, D_ECCERR, D_MECCCOR, D_MECCERR); hfdumpreg4(D_ECCCOR, D_ECCERR, D_MECCCOR, D_MECCERR);
hfdumpreg4(D_SECCCOR, D_SECCERR, UOP_STS, UOP_PAR); hfdumpreg4(D_SECCCOR, D_SECCERR, UOP_STS, UOP_PAR);
hfdumpreg4(MAPAR, MAPSR, DBG_GEN, DBG_GEN_2); hfdumpreg4(MAPAR, MAPSR, DBG_GEN, DBG_GEN_2);