aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristophe JAILLET <christophe.jaillet@wanadoo.fr>2018-01-06 15:18:55 -0500
committerMark Brown <broonie@kernel.org>2018-01-08 10:57:56 -0500
commit25f3fd043ec1f60f3955f9d7277d97e2f9c1612c (patch)
tree4aeed123546b43aec332b6544c07fb78a0dca50c
parenteaadb1caa966a91128297b754e90b7c92b350a00 (diff)
ASoC: Intel: sst: Fix some style
This patch fixes 3 small issues: - missing 2nd '*' at the beginning of a doxygen comment - extra space after a '\n' in a dev_dbg message - extra tab before a 'return" statement Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr> Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r--sound/soc/intel/atom/sst/sst_stream.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/soc/intel/atom/sst/sst_stream.c b/sound/soc/intel/atom/sst/sst_stream.c
index 20f5066fefb9..7ee6aeb7e0af 100644
--- a/sound/soc/intel/atom/sst/sst_stream.c
+++ b/sound/soc/intel/atom/sst/sst_stream.c
@@ -223,7 +223,7 @@ out:
223 return ret; 223 return ret;
224} 224}
225 225
226/* 226/**
227 * sst_pause_stream - Send msg for a pausing stream 227 * sst_pause_stream - Send msg for a pausing stream
228 * @str_id: stream ID 228 * @str_id: stream ID
229 * 229 *
@@ -261,7 +261,7 @@ int sst_pause_stream(struct intel_sst_drv *sst_drv_ctx, int str_id)
261 } 261 }
262 } else { 262 } else {
263 retval = -EBADRQC; 263 retval = -EBADRQC;
264 dev_dbg(sst_drv_ctx->dev, "SST DBG:BADRQC for stream\n "); 264 dev_dbg(sst_drv_ctx->dev, "SST DBG:BADRQC for stream\n");
265 } 265 }
266 266
267 return retval; 267 return retval;
@@ -284,7 +284,7 @@ int sst_resume_stream(struct intel_sst_drv *sst_drv_ctx, int str_id)
284 if (!str_info) 284 if (!str_info)
285 return -EINVAL; 285 return -EINVAL;
286 if (str_info->status == STREAM_RUNNING) 286 if (str_info->status == STREAM_RUNNING)
287 return 0; 287 return 0;
288 if (str_info->status == STREAM_PAUSED) { 288 if (str_info->status == STREAM_PAUSED) {
289 retval = sst_prepare_and_post_msg(sst_drv_ctx, str_info->task_id, 289 retval = sst_prepare_and_post_msg(sst_drv_ctx, str_info->task_id,
290 IPC_CMD, IPC_IA_RESUME_STREAM_MRFLD, 290 IPC_CMD, IPC_IA_RESUME_STREAM_MRFLD,