diff options
Diffstat (limited to 'drivers/isdn/gigaset/common.c')
-rw-r--r-- | drivers/isdn/gigaset/common.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/drivers/isdn/gigaset/common.c b/drivers/isdn/gigaset/common.c index 1163d316f58c..a607837b9f6c 100644 --- a/drivers/isdn/gigaset/common.c +++ b/drivers/isdn/gigaset/common.c | |||
@@ -219,7 +219,7 @@ static void timer_tick(unsigned long data) | |||
219 | timeout = 1; | 219 | timeout = 1; |
220 | 220 | ||
221 | if (atomic_read(&cs->running)) { | 221 | if (atomic_read(&cs->running)) { |
222 | mod_timer(&cs->timer, jiffies + GIG_TICK); | 222 | mod_timer(&cs->timer, jiffies + msecs_to_jiffies(GIG_TICK)); |
223 | if (timeout) { | 223 | if (timeout) { |
224 | dbg(DEBUG_CMD, "scheduling timeout"); | 224 | dbg(DEBUG_CMD, "scheduling timeout"); |
225 | tasklet_schedule(&cs->event_tasklet); | 225 | tasklet_schedule(&cs->event_tasklet); |
@@ -685,9 +685,8 @@ struct cardstate *gigaset_initcs(struct gigaset_driver *drv, int channels, | |||
685 | gigaset_if_init(cs); | 685 | gigaset_if_init(cs); |
686 | 686 | ||
687 | atomic_set(&cs->running, 1); | 687 | atomic_set(&cs->running, 1); |
688 | cs->timer.data = (unsigned long) cs; | 688 | setup_timer(&cs->timer, timer_tick, (unsigned long) cs); |
689 | cs->timer.function = timer_tick; | 689 | cs->timer.expires = jiffies + msecs_to_jiffies(GIG_TICK); |
690 | cs->timer.expires = jiffies + GIG_TICK; | ||
691 | /* FIXME: can jiffies increase too much until the timer is added? | 690 | /* FIXME: can jiffies increase too much until the timer is added? |
692 | * Same problem(?) with mod_timer() in timer_tick(). */ | 691 | * Same problem(?) with mod_timer() in timer_tick(). */ |
693 | add_timer(&cs->timer); | 692 | add_timer(&cs->timer); |