summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArun Kumar Dasari <Arun@codeaurora.org>2017-01-03 20:11:19 +0530
committerSurendar karka <sukark@codeaurora.org>2017-01-04 15:03:45 +0530
commitc11d2117b92010d90d71982f106976bbe6a220ef (patch)
tree8edeec5875eb44fdc6a398642810592aa78b095d
parent8c6beb5a26d5e0bd4e0f28e8b5c9810883611bc2 (diff)
ASoC: msm: qdsp6v2: add proper break statement
Add break statement for FORMAT_DSD decoder format id, otherwise native DSD audio playback does not work. CRs-Fixed: 1106783 Change-Id: I328cf48326616581715b4550b0c2259db863e6bb Signed-off-by: Surendar karka <sukark@codeaurora.org>
-rw-r--r--sound/soc/msm/qdsp6v2/q6asm.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sound/soc/msm/qdsp6v2/q6asm.c b/sound/soc/msm/qdsp6v2/q6asm.c
index 38c51eb32f4d..5c6c88880fb2 100644
--- a/sound/soc/msm/qdsp6v2/q6asm.c
+++ b/sound/soc/msm/qdsp6v2/q6asm.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2012-2016, The Linux Foundation. All rights reserved.
+ * Copyright (c) 2012-2017, The Linux Foundation. All rights reserved.
* Author: Brian Swetland <swetland@google.com>
*
* This software is licensed under the terms of the GNU General Public
@@ -2877,6 +2877,7 @@ static int __q6asm_open_read_write(struct audio_client *ac, uint32_t rd_format,
break;
case FORMAT_DSD:
open.dec_fmt_id = ASM_MEDIA_FMT_DSD;
+ break;
case FORMAT_G711_ALAW_FS:
open.dec_fmt_id = ASM_MEDIA_FMT_G711_ALAW_FS;
break;