aboutsummaryrefslogtreecommitdiff
path: root/sys/compat/linuxkpi/common/include/linux/timer.h
diff options
context:
space:
mode:
authorBjoern A. Zeeb <bz@FreeBSD.org>2025-01-08 08:30:00 +0000
committerBjoern A. Zeeb <bz@FreeBSD.org>2025-01-08 08:30:14 +0000
commit2bb0efbb7b64fa957d46d4f443b000f375fc03d4 (patch)
tree11949c43a88978d0ada1e5570d5b1bf5848c2e6f /sys/compat/linuxkpi/common/include/linux/timer.h
parent7f8f120439b77e60a1070d87f4dc6cb9a43d0335 (diff)
Diffstat (limited to 'sys/compat/linuxkpi/common/include/linux/timer.h')
-rw-r--r--sys/compat/linuxkpi/common/include/linux/timer.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/compat/linuxkpi/common/include/linux/timer.h b/sys/compat/linuxkpi/common/include/linux/timer.h
index f9c76222795c..8bea082c3e6c 100644
--- a/sys/compat/linuxkpi/common/include/linux/timer.h
+++ b/sys/compat/linuxkpi/common/include/linux/timer.h
@@ -42,7 +42,7 @@ struct timer_list {
void (*function_415) (struct timer_list *);
};
unsigned long data;
- unsigned long expires;
+ int expires;
};
extern unsigned long linux_timer_hz_mask;
@@ -76,7 +76,7 @@ extern unsigned long linux_timer_hz_mask;
callout_init(&(timer)->callout, 1); \
} while (0)
-extern int mod_timer(struct timer_list *, unsigned long);
+extern int mod_timer(struct timer_list *, int);
extern void add_timer(struct timer_list *);
extern void add_timer_on(struct timer_list *, int cpu);
extern int del_timer(struct timer_list *);