diff options
author | Takashi Iwai <tiwai@suse.de> | 2015-01-19 13:44:40 +0300 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2015-01-19 13:46:02 +0300 |
commit | 0f2524b347b1ce16ce6a34cb194445e25bc6ae42 (patch) | |
tree | d10bf2a45525a39463519479a2fa639fb8b74ba0 /sound/usb/line6/toneport.c | |
parent | 61864d844c296933d40c02683252bbea5193b101 (diff) | |
download | linux-0f2524b347b1ce16ce6a34cb194445e25bc6ae42.tar.xz |
ALSA: line6: 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/usb/line6/toneport.c')
-rw-r--r-- | sound/usb/line6/toneport.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/sound/usb/line6/toneport.c b/sound/usb/line6/toneport.c index aae78d8a82d9..7f97f4a812a7 100644 --- a/sound/usb/line6/toneport.c +++ b/sound/usb/line6/toneport.c @@ -433,11 +433,9 @@ static int toneport_try_init(struct usb_interface *interface, toneport_setup(toneport); - init_timer(&toneport->timer); - toneport->timer.expires = jiffies + TONEPORT_PCM_DELAY * HZ; - toneport->timer.function = toneport_start_pcm; - toneport->timer.data = (unsigned long)toneport; - add_timer(&toneport->timer); + setup_timer(&toneport->timer, toneport_start_pcm, + (unsigned long)toneport); + mod_timer(&toneport->timer, jiffies + TONEPORT_PCM_DELAY * HZ); return 0; } |