drivers/input/button_lower.c: Fix syslog formats

This commit is contained in:
YAMAMOTO Takashi 2020-11-21 09:28:08 +09:00 committed by Xiang Xiao
parent a9c84e1941
commit 00c15a7fa1

View File

@ -42,6 +42,7 @@
#include <sys/types.h> #include <sys/types.h>
#include <assert.h> #include <assert.h>
#include <debug.h> #include <debug.h>
#include <inttypes.h>
#include <nuttx/board.h> #include <nuttx/board.h>
#include <nuttx/input/buttons.h> #include <nuttx/input/buttons.h>
@ -98,7 +99,7 @@ static FAR void *g_btnarg;
static btn_buttonset_t btn_supported(FAR const struct btn_lowerhalf_s *lower) static btn_buttonset_t btn_supported(FAR const struct btn_lowerhalf_s *lower)
{ {
iinfo("NUM_BUTTONS: %02x\n", g_btnnum); iinfo("NUM_BUTTONS: %02" PRIx32 "\n", g_btnnum);
return (btn_buttonset_t)((1 << g_btnnum) - 1); return (btn_buttonset_t)((1 << g_btnnum) - 1);
} }
@ -138,7 +139,7 @@ static void btn_enable(FAR const struct btn_lowerhalf_s *lower,
flags = enter_critical_section(); flags = enter_critical_section();
btn_disable(); btn_disable();
iinfo("press: %02x release: %02x handler: %p arg: %p\n", iinfo("press: %02" PRIx32 " release: %02" PRIx32 " handler: %p arg: %p\n",
press, release, handler, arg); press, release, handler, arg);
/* If no events are indicated or if no handler is provided, then this /* If no events are indicated or if no handler is provided, then this