mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
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>
This commit is contained in:
parent
60f1deb595
commit
3182c8a72b
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue