uip: de-__gptrget()-call in timer_{set,reset,restart,exprired}()

This commit is contained in:
René van Dorst
2026-04-18 22:20:46 +02:00
parent 8134ca7ec7
commit facc4afe40
2 changed files with 8 additions and 8 deletions
+4 -4
View File
@@ -76,10 +76,10 @@ struct timer {
clock_time_t interval;
};
void timer_set(struct timer *t, clock_time_t interval);
void timer_reset(struct timer *t);
void timer_restart(struct timer *t);
int timer_expired(struct timer *t);
void timer_set(__xdata struct timer *t, clock_time_t interval);
void timer_reset(__xdata struct timer *t);
void timer_restart(__xdata struct timer *t);
int timer_expired(__xdata struct timer *t);
#endif /* __TIMER_H__ */