aboutsummaryrefslogtreecommitdiffstats
path: root/meta-mentor-staging/recipes-multimedia/alsa/alsa-lib/fix_dshare_status.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta-mentor-staging/recipes-multimedia/alsa/alsa-lib/fix_dshare_status.patch')
-rw-r--r--meta-mentor-staging/recipes-multimedia/alsa/alsa-lib/fix_dshare_status.patch21
1 files changed, 0 insertions, 21 deletions
diff --git a/meta-mentor-staging/recipes-multimedia/alsa/alsa-lib/fix_dshare_status.patch b/meta-mentor-staging/recipes-multimedia/alsa/alsa-lib/fix_dshare_status.patch
deleted file mode 100644
index 4c6409a9..00000000
--- a/meta-mentor-staging/recipes-multimedia/alsa/alsa-lib/fix_dshare_status.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-Upstream-Status: Pending
-
-Alsa plugin dshare is reporting incorrect stream state when it detects underrun
-Update stream state from pcm handle than slave pcm of dshare plugin
-
-Signed-off-by: Sanjeev Chugh <sanjeev_chugh@mentor.com>
-Signed-off-by: Mikhail Durnev <mikhail_durnev@mentor.com>
-
-Index: alsa-lib-1.1.3/src/pcm/pcm_dshare.c
-===================================================================
---- alsa-lib-1.1.3.orig/src/pcm/pcm_dshare.c 2017-03-26 09:38:40.150371765 +0500
-+++ alsa-lib-1.1.3/src/pcm/pcm_dshare.c 2017-03-26 09:40:03.878373271 +0500
-@@ -226,7 +226,7 @@
- snd_pcm_direct_t *dshare = pcm->private_data;
-
- memset(status, 0, sizeof(*status));
-- snd_pcm_status(dshare->spcm, status);
-+ snd_pcm_status(pcm, status);
-
- switch (dshare->state) {
- case SNDRV_PCM_STATE_DRAINING: