[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20231013015951.16812-1-edson.drosdeck@gmail.com>
Date: Thu, 12 Oct 2023 22:59:51 -0300
From: Edson Juliano Drosdeck <edson.drosdeck@...il.com>
To: tiwai@...e.com
Cc: perex@...ex.cz, alsa-devel@...a-project.org,
linux-kernel@...r.kernel.org, edson.drosdeck@...il.com
Subject: [PATCH] ALSA: pci: Missing a blank line after declarations
Warning found by checkpatch.pl script. Adding blank line after declarations.
Signed-off-by: Edson Juliano Drosdeck <edson.drosdeck@...il.com>
---
sound/pci/lola/lola_proc.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/sound/pci/lola/lola_proc.c b/sound/pci/lola/lola_proc.c
index a166672e22cb..1ee5997da3c9 100644
--- a/sound/pci/lola/lola_proc.c
+++ b/sound/pci/lola/lola_proc.c
@@ -137,6 +137,7 @@ static void lola_proc_codec_rw_write(struct snd_info_entry *entry,
struct lola *chip = entry->private_data;
char line[64];
unsigned int id, verb, data, extdata;
+
while (!snd_info_get_line(buffer, line, sizeof(line))) {
if (sscanf(line, "%u %u %u %u", &id, &verb, &data, &extdata) != 4)
continue;
@@ -150,6 +151,7 @@ static void lola_proc_codec_rw_read(struct snd_info_entry *entry,
struct snd_info_buffer *buffer)
{
struct lola *chip = entry->private_data;
+
snd_iprintf(buffer, "0x%x 0x%x\n", chip->debug_res, chip->debug_res_ex);
}
--
2.39.2
Powered by blists - more mailing lists