Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit da1a3924 authored by Takashi Iwai's avatar Takashi Iwai
Browse files

ALSA: aica: Use setup_timer() and mod_timer()



No functional change, refactoring with the standard helpers.

Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent 04018e13
Loading
Loading
Loading
Loading
+3 −5
Original line number Diff line number Diff line
@@ -343,11 +343,9 @@ static void spu_begin_dma(struct snd_pcm_substream *substream)
		mod_timer(&dreamcastcard->timer, jiffies + 4);
		return;
	}
	init_timer(&(dreamcastcard->timer));
	dreamcastcard->timer.data = (unsigned long) substream;
	dreamcastcard->timer.function = aica_period_elapsed;
	dreamcastcard->timer.expires = jiffies + 4;
	add_timer(&(dreamcastcard->timer));
	setup_timer(&dreamcastcard->timer, aica_period_elapsed,
		    (unsigned long) substream);
	mod_timer(&dreamcastcard->timer, jiffies + 4);
}

static int snd_aicapcm_pcm_open(struct snd_pcm_substream