arch/arm/src/lc823450/lc823450_wdt.c: Fix syslog formats

This commit is contained in:
YAMAMOTO Takashi 2020-11-30 19:54:33 +09:00 committed by Xiang Xiao
parent 8bfd344600
commit 93bd2d8d7a

View File

@ -25,6 +25,7 @@
#include <nuttx/config.h>
#include <nuttx/arch.h>
#include <inttypes.h>
#include <stdint.h>
#include <syslog.h>
#include <errno.h>
@ -328,9 +329,9 @@ static int lc823450_wdt_getstatus(FAR struct watchdog_lowerhalf_s *lower,
(2 * (256 - WT0BCGST) * 1000) / wdt_freq;
wdinfo("Status :\n");
wdinfo(" flags : %08x\n", status->flags);
wdinfo(" timeout : %d\n", status->timeout);
wdinfo(" timeleft : %d\n", status->timeleft);
wdinfo(" flags : %08" PRIx32 "\n", status->flags);
wdinfo(" timeout : %" PRId32 "\n", status->timeout);
wdinfo(" timeleft : %" PRId32 "\n", status->timeleft);
return OK;
}
@ -369,7 +370,7 @@ static int lc823450_wdt_settimeout(FAR struct watchdog_lowerhalf_s *lower,
if (wt0pstst < 1 || wt0pstst > 0xffff)
{
wdinfo("Error: timeout= %d < %d > %d\n",
wdinfo("Error: timeout= %" PRId32 " < %" PRId32 " > %" PRId32 "\n",
65536 - 1 * wdt_freq / (2 * (256 - WT0BCGST) * 1000),
timeout,
65536 - 0xffff * wdt_freq / (2 * (256 - WT0BCGST) * 1000)); /* 22s */
@ -394,7 +395,7 @@ static int lc823450_wdt_settimeout(FAR struct watchdog_lowerhalf_s *lower,
lc823450_wdt_start(lower);
wdinfo("Entry: timeout=%d\n", timeout);
wdinfo("Entry: timeout=%" PRId32 "\n", timeout);
return OK;
}