mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 14:11:52 +00:00
ALSA: wavefront: Convert timers to use timer_setup()
In preparation for unconditionally passing the struct timer_list pointer to all timer callbacks, switch to using the new timer_setup() and from_timer() to pass the timer pointer explicitly. Signed-off-by: Kees Cook <keescook@chromium.org> Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
08352b200b
commit
57e69e2f06
@ -28,6 +28,7 @@ struct _snd_wavefront_midi {
|
||||
struct snd_rawmidi_substream *substream_output[2];
|
||||
struct snd_rawmidi_substream *substream_input[2];
|
||||
struct timer_list timer;
|
||||
snd_wavefront_card_t *timer_card;
|
||||
spinlock_t open;
|
||||
spinlock_t virtual; /* protects isvirtual */
|
||||
};
|
||||
|
@ -349,10 +349,10 @@ static void snd_wavefront_midi_input_trigger(struct snd_rawmidi_substream *subst
|
||||
spin_unlock_irqrestore (&midi->virtual, flags);
|
||||
}
|
||||
|
||||
static void snd_wavefront_midi_output_timer(unsigned long data)
|
||||
static void snd_wavefront_midi_output_timer(struct timer_list *t)
|
||||
{
|
||||
snd_wavefront_card_t *card = (snd_wavefront_card_t *)data;
|
||||
snd_wavefront_midi_t *midi = &card->wavefront.midi;
|
||||
snd_wavefront_midi_t *midi = from_timer(midi, t, timer);
|
||||
snd_wavefront_card_t *card = midi->timer_card;
|
||||
unsigned long flags;
|
||||
|
||||
spin_lock_irqsave (&midi->virtual, flags);
|
||||
@ -383,9 +383,9 @@ static void snd_wavefront_midi_output_trigger(struct snd_rawmidi_substream *subs
|
||||
if (up) {
|
||||
if ((midi->mode[mpu] & MPU401_MODE_OUTPUT_TRIGGER) == 0) {
|
||||
if (!midi->istimer) {
|
||||
setup_timer(&midi->timer,
|
||||
timer_setup(&midi->timer,
|
||||
snd_wavefront_midi_output_timer,
|
||||
(unsigned long) substream->rmidi->card->private_data);
|
||||
0);
|
||||
mod_timer(&midi->timer, 1 + jiffies);
|
||||
}
|
||||
midi->istimer++;
|
||||
|
Loading…
Reference in New Issue
Block a user