Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 177069
b: refs/heads/master
c: e40ec6f
h: refs/heads/master
i:
  177067: 431cd14
v: v3
  • Loading branch information
Dmitry Torokhov committed Dec 12, 2009
1 parent c9463f2 commit bb9f910
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 898d1053f72c192a6e7f701e915995afff695de8
refs/heads/master: e40ec6ff2f42b5516d77a5c34bfa6a9ce45834f4
8 changes: 3 additions & 5 deletions trunk/drivers/input/serio/hil_mlc.c
Original file line number Diff line number Diff line change
Expand Up @@ -993,10 +993,8 @@ int hil_mlc_unregister(hil_mlc *mlc)

static int __init hil_mlc_init(void)
{
init_timer(&hil_mlcs_kicker);
hil_mlcs_kicker.expires = jiffies + HZ;
hil_mlcs_kicker.function = &hil_mlcs_timer;
add_timer(&hil_mlcs_kicker);
setup_timer(&hil_mlcs_kicker, &hil_mlcs_timer, 0);
mod_timer(&hil_mlcs_kicker, jiffies + HZ);

tasklet_enable(&hil_mlcs_tasklet);

Expand All @@ -1005,7 +1003,7 @@ static int __init hil_mlc_init(void)

static void __exit hil_mlc_exit(void)
{
del_timer(&hil_mlcs_kicker);
del_timer_sync(&hil_mlcs_kicker);

tasklet_disable(&hil_mlcs_tasklet);
tasklet_kill(&hil_mlcs_tasklet);
Expand Down

0 comments on commit bb9f910

Please sign in to comment.