diff options
author | Colin Ian King <colin.i.king@gmail.com> | 2024-09-01 17:21:25 +0100 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2024-09-02 08:03:10 +0200 |
commit | 2657539a27149b22aec6766831fc69ad36548cb1 (patch) | |
tree | 337e6958bc4a4b80db972fb341c0a2d655c8607d | |
parent | 43b42ed438bfff6bb5a51cc27a1658c03cd223fd (diff) |
ALSA: ali5451: Remove trailing space after \n newline
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>
Link: https://patch.msgid.link/20240901162125.144069-1-colin.i.king@gmail.com
Signed-off-by: Takashi Iwai <tiwai@suse.de>
-rw-r--r-- | sound/pci/ali5451/ali5451.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |