diff options
author | John Stultz <john.stultz@linaro.org> | 2011-08-10 15:09:24 -0400 |
---|---|---|
committer | John Stultz <john.stultz@linaro.org> | 2011-08-10 17:55:26 -0400 |
commit | 9e26476243e438f4534a562660c1296a15a9e202 (patch) | |
tree | d70609d91f0aab85ad9768500b7e57623d9e3eae /include/linux/alarmtimer.h | |
parent | d77e23accec56bf2ba12187fe77a2f500a511282 (diff) |
alarmtimers: Remove period from alarm structure
Now that periodic alarmtimers are managed by the handler function,
remove the period value from the alarm structure and let the handlers
manage the interval on their own.
CC: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: John Stultz <john.stultz@linaro.org>
Diffstat (limited to 'include/linux/alarmtimer.h')
-rw-r--r-- | include/linux/alarmtimer.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/linux/alarmtimer.h b/include/linux/alarmtimer.h index 17535963b274..c854a8efa863 100644 --- a/include/linux/alarmtimer.h +++ b/include/linux/alarmtimer.h | |||
@@ -30,7 +30,6 @@ enum alarmtimer_restart { | |||
30 | */ | 30 | */ |
31 | struct alarm { | 31 | struct alarm { |
32 | struct timerqueue_node node; | 32 | struct timerqueue_node node; |
33 | ktime_t period; | ||
34 | enum alarmtimer_restart (*function)(struct alarm *, ktime_t now); | 33 | enum alarmtimer_restart (*function)(struct alarm *, ktime_t now); |
35 | enum alarmtimer_type type; | 34 | enum alarmtimer_type type; |
36 | bool enabled; | 35 | bool enabled; |
@@ -39,7 +38,7 @@ struct alarm { | |||
39 | 38 | ||
40 | void alarm_init(struct alarm *alarm, enum alarmtimer_type type, | 39 | void alarm_init(struct alarm *alarm, enum alarmtimer_type type, |
41 | enum alarmtimer_restart (*function)(struct alarm *, ktime_t)); | 40 | enum alarmtimer_restart (*function)(struct alarm *, ktime_t)); |
42 | void alarm_start(struct alarm *alarm, ktime_t start, ktime_t period); | 41 | void alarm_start(struct alarm *alarm, ktime_t start); |
43 | void alarm_cancel(struct alarm *alarm); | 42 | void alarm_cancel(struct alarm *alarm); |
44 | 43 | ||
45 | u64 alarm_forward(struct alarm *alarm, ktime_t now, ktime_t interval); | 44 | u64 alarm_forward(struct alarm *alarm, ktime_t now, ktime_t interval); |