boards/arm/cxd56xx/common/src/cxd56_gs2200m.c: Fix syslog formats
This commit is contained in:
parent
d7086d333e
commit
edee18be72
@ -39,6 +39,7 @@
|
|||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
#include <debug.h>
|
#include <debug.h>
|
||||||
|
#include <inttypes.h>
|
||||||
|
|
||||||
#include <nuttx/arch.h>
|
#include <nuttx/arch.h>
|
||||||
#include <nuttx/config.h>
|
#include <nuttx/config.h>
|
||||||
@ -114,7 +115,8 @@ static void gs2200m_irq_enable(void)
|
|||||||
{
|
{
|
||||||
irqstate_t flags = enter_critical_section();
|
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)
|
if (0 == _enable_count)
|
||||||
{
|
{
|
||||||
@ -134,7 +136,8 @@ static void gs2200m_irq_disable(void)
|
|||||||
{
|
{
|
||||||
irqstate_t flags = enter_critical_section();
|
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--;
|
_enable_count--;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user