This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git
commit 591c1563b841ec617f4e67ea3dd68dae159fea76 Author: Abdelatif Guettouche <[email protected]> AuthorDate: Mon Sep 27 14:06:48 2021 +0200 esp32_oneshot_lowerhalf.c: Use the same alignment as the rest of the code base. Signed-off-by: Abdelatif Guettouche <[email protected]> --- arch/xtensa/src/esp32/esp32_oneshot_lowerhalf.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/arch/xtensa/src/esp32/esp32_oneshot_lowerhalf.c b/arch/xtensa/src/esp32/esp32_oneshot_lowerhalf.c index e807939..9ff5d22 100644 --- a/arch/xtensa/src/esp32/esp32_oneshot_lowerhalf.c +++ b/arch/xtensa/src/esp32/esp32_oneshot_lowerhalf.c @@ -56,12 +56,12 @@ struct esp32_oneshot_lowerhalf_s * That means, opaque pointers. */ - struct oneshot_lowerhalf_s lh; /* Lower half instance */ - struct esp32_oneshot_s oneshot; /* ESP32-specific oneshot state */ - oneshot_callback_t callback; /* Upper half Interrupt callback */ - void *arg; /* Argument passed to handler */ - uint16_t resolution; - spinlock_t lock; /* Device specific lock */ + struct oneshot_lowerhalf_s lh; /* Lower half instance */ + struct esp32_oneshot_s oneshot; /* ESP32-specific oneshot state */ + oneshot_callback_t callback; /* Upper half Interrupt callback */ + void *arg; /* Argument passed to handler */ + uint16_t resolution; /* Timer's resulation in uS */ + spinlock_t lock; /* Device specific lock */ }; /****************************************************************************
