diff options
author | Takashi Iwai <tiwai@suse.de> | 2015-01-19 11:41:13 +0100 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2015-01-19 11:41:13 +0100 |
commit | abd083526af3a8a1610e884c8e619925c3d663e6 (patch) | |
tree | 4a5102f0116722c05eb169e36c099b104c351bfb /sound/synth/emux/emux_synth.c | |
parent | ALSA: aica: Use setup_timer() and mod_timer() (diff) | |
download | linux-abd083526af3a8a1610e884c8e619925c3d663e6.tar.xz linux-abd083526af3a8a1610e884c8e619925c3d663e6.zip |
ALSA: emux: Use setup_timer() and mod_timer()
No functional change, refactoring with the standard helpers.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/synth/emux/emux_synth.c')
-rw-r--r-- | sound/synth/emux/emux_synth.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/sound/synth/emux/emux_synth.c b/sound/synth/emux/emux_synth.c index 9a38de459acb..599551b5af44 100644 --- a/sound/synth/emux/emux_synth.c +++ b/sound/synth/emux/emux_synth.c @@ -186,8 +186,7 @@ snd_emux_note_off(void *p, int note, int vel, struct snd_midi_channel *chan) */ vp->state = SNDRV_EMUX_ST_PENDING; if (! emu->timer_active) { - emu->tlist.expires = jiffies + 1; - add_timer(&emu->tlist); + mod_timer(&emu->tlist, jiffies + 1); emu->timer_active = 1; } } else @@ -223,8 +222,7 @@ void snd_emux_timer_callback(unsigned long data) } } if (do_again) { - emu->tlist.expires = jiffies + 1; - add_timer(&emu->tlist); + mod_timer(&emu->tlist, jiffies + 1); emu->timer_active = 1; } else emu->timer_active = 0; |