Message ID | 20240901162125.144069-1-colin.i.king@gmail.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 2657539a27149b22aec6766831fc69ad36548cb1 |
Headers | show |
Series | [next] ALSA: ali5451: Remove trailing space after \n newline | expand |
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 --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; }
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(-)