diff mbox series

[next] ALSA: ali5451: Remove trailing space after \n newline

Message ID 20240901162125.144069-1-colin.i.king@gmail.com (mailing list archive)
State New
Headers show
Series [next] ALSA: ali5451: Remove trailing space after \n newline | expand

Commit Message

Colin Ian King Sept. 1, 2024, 4:21 p.m. UTC
There is a extraneous space after a newline in a dev_dbg message.
Remove it.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
---
 sound/pci/ali5451/ali5451.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Takashi Iwai Sept. 2, 2024, 6:03 a.m. UTC | #1
On Sun, 01 Sep 2024 18:21:25 +0200,
Colin Ian King wrote:
> 
> There is a extraneous space after a newline in a dev_dbg message.
> Remove it.
> 
> Signed-off-by: Colin Ian King <colin.i.king@gmail.com>

Thanks, applied now.


Takashi
diff mbox series

Patch

diff --git a/sound/pci/ali5451/ali5451.c b/sound/pci/ali5451/ali5451.c
index 31e51e2df655..793d2f13267e 100644
--- a/sound/pci/ali5451/ali5451.c
+++ b/sound/pci/ali5451/ali5451.c
@@ -292,7 +292,7 @@  static int snd_ali_codec_ready(struct snd_ali *codec,
 	}
 
 	snd_ali_5451_poke(codec, port, res & ~0x8000);
-	dev_dbg(codec->card->dev, "ali_codec_ready: codec is not ready.\n ");
+	dev_dbg(codec->card->dev, "ali_codec_ready: codec is not ready.\n");
 	return -EIO;
 }