1
0
Fork 0

sound: oss: fix uninitialized spinlock

The spinlock lock in sound_timer.c is used without initialization.

Signed-off-by: Akinobu Mita <akinobu.mita@gmail.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
hifive-unleashed-5.1
Akinobu Mita 2010-08-28 13:25:33 +09:00 committed by Takashi Iwai
parent 60f1deb595
commit 3182c8a72b
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ static unsigned long prev_event_time;
static volatile unsigned long usecs_per_tmr; /* Length of the current interval */
static struct sound_lowlev_timer *tmr;
static spinlock_t lock;
static DEFINE_SPINLOCK(lock);
static unsigned long tmr2ticks(int tmr_value)
{