The Linux Kernel Mailing List
 help / color / mirror / Atom feed
* [PATCH] ALSA: usb-audio: Convert comma to semicolon
@ 2025-06-12  6:02 Chen Ni
  2025-06-12  6:13 ` Cristian Ciocaltea
  2025-06-12  6:52 ` Takashi Iwai
  0 siblings, 2 replies; 6+ messages in thread
From: Chen Ni @ 2025-06-12  6:02 UTC (permalink / raw)
  To: perex, tiwai, cristian.ciocaltea, franta-linux, lina+kernel,
	livvy, sstistrup, s
  Cc: linux-sound, linux-kernel, Chen Ni

Replace comma between expressions with semicolons.

Using a ',' in place of a ';' can have unintended side effects.
Although that is not the case here, it is seems best to use ';'
unless ',' is intended.

Found by inspection.
No functional change intended.
Compile tested only.

Signed-off-by: Chen Ni <nichen@iscas.ac.cn>
---
 sound/usb/mixer_quirks.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/sound/usb/mixer_quirks.c b/sound/usb/mixer_quirks.c
index 0769ecd91144..a0ffe8b559dc 100644
--- a/sound/usb/mixer_quirks.c
+++ b/sound/usb/mixer_quirks.c
@@ -762,9 +762,9 @@ static int snd_dualsense_jack_create(struct usb_mixer_interface *mixer,
 
 	mei->ih.event = snd_dualsense_ih_event;
 	mei->ih.match = snd_dualsense_ih_match;
-	mei->ih.connect = snd_dualsense_ih_connect,
-	mei->ih.disconnect = snd_dualsense_ih_disconnect,
-	mei->ih.start = snd_dualsense_ih_start,
+	mei->ih.connect = snd_dualsense_ih_connect;
+	mei->ih.disconnect = snd_dualsense_ih_disconnect;
+	mei->ih.start = snd_dualsense_ih_start;
 	mei->ih.name = name;
 	mei->ih.id_table = mei->id_table;
 
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2025-06-12  7:48 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-06-12  6:02 [PATCH] ALSA: usb-audio: Convert comma to semicolon Chen Ni
2025-06-12  6:13 ` Cristian Ciocaltea
2025-06-12  6:52 ` Takashi Iwai
2025-06-12  7:22   ` Cristian Ciocaltea
2025-06-12  7:30     ` Takashi Iwai
2025-06-12  7:48       ` Cristian Ciocaltea

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox