brcm2708: update 3.10 patches with raspberrypi/rpi-3.10.y of 27 Apr. 2014
[openwrt/staging/rmilecki.git] / target / linux / brcm2708 / patches-3.10 / 0174-alsa-Make-alsa-work-queue-high-priority.-Fixes-under.patch
1 From 7283e37aaa873478ecc56b3eb602249e9be6ab84 Mon Sep 17 00:00:00 2001
2 From: popcornmix <popcornmix@gmail.com>
3 Date: Fri, 21 Feb 2014 17:15:59 +0000
4 Subject: [PATCH 174/196] alsa: Make alsa work queue high priority. Fixes
5 underrun issues when using negitive nice priority
6
7 ---
8 sound/arm/bcm2835-vchiq.c | 2 +-
9 1 file changed, 1 insertion(+), 1 deletion(-)
10
11 diff --git a/sound/arm/bcm2835-vchiq.c b/sound/arm/bcm2835-vchiq.c
12 index 169d899..eaa23a8 100755
13 --- a/sound/arm/bcm2835-vchiq.c
14 +++ b/sound/arm/bcm2835-vchiq.c
15 @@ -178,7 +178,7 @@ int bcm2835_audio_write(bcm2835_alsa_stream_t *alsa_stream,
16
17 void my_workqueue_init(bcm2835_alsa_stream_t * alsa_stream)
18 {
19 - alsa_stream->my_wq = create_workqueue("my_queue");
20 + alsa_stream->my_wq = alloc_workqueue("my_queue", WQ_HIGHPRI, 1);
21 return;
22 }
23
24 --
25 1.9.1
26