From 6eafa9fd3a49289d34007a018b6d1fba8e4b7e24 Mon Sep 17 00:00:00 2001 From: "Luke T. Shumaker" Date: Tue, 10 Jun 2025 00:47:32 -0600 Subject: libmisc: obj.h: Rework the LO_INTERFACE_* API to expose method funcs --- libhw_cr/rp2040_hwtimer.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'libhw_cr/rp2040_hwtimer.c') diff --git a/libhw_cr/rp2040_hwtimer.c b/libhw_cr/rp2040_hwtimer.c index d9f0a24..3454383 100644 --- a/libhw_cr/rp2040_hwtimer.c +++ b/libhw_cr/rp2040_hwtimer.c @@ -27,8 +27,7 @@ struct rp2040_hwtimer { bool initialized; struct alarmclock_trigger *queue; }; -LO_IMPLEMENTATION_H(alarmclock, struct rp2040_hwtimer, rp2040_hwtimer); -LO_IMPLEMENTATION_C(alarmclock, struct rp2040_hwtimer, rp2040_hwtimer, static); +LO_IMPLEMENTATION_STATIC(alarmclock, struct rp2040_hwtimer, rp2040_hwtimer); /* Globals ********************************************************************/ -- cgit v1.2.3-2-g168b