On Fri, 2025-07-25 at 23:22 +1000, Lachlan Hodges wrote: > > +static inline u8 *tim_push(u8 **p, u8 v) > +{ > + *(*p)++ = v; > + return *p; > +} The robot complains about this, there should (normally) not be inline in C files. Also, looks like you don't need the return value? Anyway, it's the middle of the merge windows, so I guess it'll be a while before I apply things. johannes