From f0b3681542e334b546b5784f2af3de812e1b9866 Mon Sep 17 00:00:00 2001 From: Sebastian Reimers Date: Mon, 12 Aug 2024 08:53:27 +0200 Subject: [PATCH] tmr: add TMR_INIT --- include/re_tmr.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/re_tmr.h b/include/re_tmr.h index ef9d0a6ce..0c6650c51 100644 --- a/include/re_tmr.h +++ b/include/re_tmr.h @@ -29,6 +29,8 @@ struct tmr { int line; }; +#define TMR_INIT {.le = LE_INIT} + int tmrl_alloc(struct tmrl **tmrl); void tmr_poll(struct tmrl *tmrl); uint64_t tmr_jiffies_usec(void);