boards/arm/cxd56xx/common/src/cxd56_gs2200m.c: Fix syslog formats

This commit is contained in:
YAMAMOTO Takashi 2020-11-27 14:25:05 +09:00 committed by Xiang Xiao
parent d7086d333e
commit edee18be72

View File

@ -39,6 +39,7 @@
****************************************************************************/
#include <debug.h>
#include <inttypes.h>
#include <nuttx/arch.h>
#include <nuttx/config.h>
@ -114,7 +115,8 @@ static void gs2200m_irq_enable(void)
{
irqstate_t flags = enter_critical_section();
wlinfo("== ec:%d called=%d \n", _enable_count, _n_called++);
wlinfo("== ec:%" PRId32 " called=%" PRId32 " \n",
_enable_count, _n_called++);
if (0 == _enable_count)
{
@ -134,7 +136,8 @@ static void gs2200m_irq_disable(void)
{
irqstate_t flags = enter_critical_section();
wlinfo("== ec:%d called=%d \n", _enable_count, _n_called++);
wlinfo("== ec:%" PRId32 " called=%" PRId32 " \n",
_enable_count, _n_called++);
_enable_count--;