diff mbox

ALSA: compress: fix some missing and misplaced \n in messages

Message ID 20160916164641.11805-1-colin.king@canonical.com (mailing list archive)
State New, archived
Headers show

Commit Message

Colin King Sept. 16, 2016, 4:46 p.m. UTC
From: Colin Ian King <colin.king@canonical.com>

Fix a missing \n in a pr_debug message and move the \n to the end
of a pr_err message.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 sound/core/compress_offload.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Takashi Iwai Sept. 16, 2016, 5:25 p.m. UTC | #1
On Fri, 16 Sep 2016 18:46:41 +0200,
Colin King wrote:
> 
> From: Colin Ian King <colin.king@canonical.com>
> 
> Fix a missing \n in a pr_debug message and move the \n to the end
> of a pr_err message.
> 
> Signed-off-by: Colin Ian King <colin.king@canonical.com>

Applied, thanks.


Takashi

> ---
>  sound/core/compress_offload.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/sound/core/compress_offload.c b/sound/core/compress_offload.c
> index 583d407..fec1dfd 100644
> --- a/sound/core/compress_offload.c
> +++ b/sound/core/compress_offload.c
> @@ -780,7 +780,7 @@ static int snd_compress_wait_for_drain(struct snd_compr_stream *stream)
>  	ret = wait_event_interruptible(stream->runtime->sleep,
>  			(stream->runtime->state != SNDRV_PCM_STATE_DRAINING));
>  	if (ret == -ERESTARTSYS)
> -		pr_debug("wait aborted by a signal");
> +		pr_debug("wait aborted by a signal\n");
>  	else if (ret)
>  		pr_debug("wait for drain failed with %d\n", ret);
>  
> @@ -962,7 +962,7 @@ static int snd_compress_dev_register(struct snd_device *device)
>  				  compr->card, compr->device,
>  				  &snd_compr_file_ops, compr, &compr->dev);
>  	if (ret < 0) {
> -		pr_err("snd_register_device failed\n %d", ret);
> +		pr_err("snd_register_device failed %d\n", ret);
>  		return ret;
>  	}
>  	return ret;
> -- 
> 2.9.3
> 
>
diff mbox

Patch

diff --git a/sound/core/compress_offload.c b/sound/core/compress_offload.c
index 583d407..fec1dfd 100644
--- a/sound/core/compress_offload.c
+++ b/sound/core/compress_offload.c
@@ -780,7 +780,7 @@  static int snd_compress_wait_for_drain(struct snd_compr_stream *stream)
 	ret = wait_event_interruptible(stream->runtime->sleep,
 			(stream->runtime->state != SNDRV_PCM_STATE_DRAINING));
 	if (ret == -ERESTARTSYS)
-		pr_debug("wait aborted by a signal");
+		pr_debug("wait aborted by a signal\n");
 	else if (ret)
 		pr_debug("wait for drain failed with %d\n", ret);
 
@@ -962,7 +962,7 @@  static int snd_compress_dev_register(struct snd_device *device)
 				  compr->card, compr->device,
 				  &snd_compr_file_ops, compr, &compr->dev);
 	if (ret < 0) {
-		pr_err("snd_register_device failed\n %d", ret);
+		pr_err("snd_register_device failed %d\n", ret);
 		return ret;
 	}
 	return ret;