projects
/
platform
/
kernel
/
linux-starfive.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9d73d19
)
ALSA: usb-audio: remove redundant assignment to variable c
author
Colin Ian King
<colin.i.king@gmail.com>
Mon, 7 Feb 2022 14:06:17 +0000
(14:06 +0000)
committer
Takashi Iwai
<tiwai@suse.de>
Tue, 8 Feb 2022 07:21:32 +0000
(08:21 +0100)
The variable c is being initialized in an outer for-loop and also
re-initialized inside an inner for-loop. The first initialization
is redundant and can be removed.
Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Link:
https://lore.kernel.org/r/20220207140617.341172-1-colin.i.king@gmail.com
Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/usb/mixer_s1810c.c
patch
|
blob
|
history
diff --git
a/sound/usb/mixer_s1810c.c
b/sound/usb/mixer_s1810c.c
index 0255089c9efb15f64b672426e51040de614087c7..fac4bbc6b275772dd27fecb8be0be987558e0c22 100644
(file)
--- a/
sound/usb/mixer_s1810c.c
+++ b/
sound/usb/mixer_s1810c.c
@@
-221,7
+221,7
@@
static int snd_s1810c_init_mixer_maps(struct snd_usb_audio *chip)
e = 0xbc;
for (n = 0; n < 2; n++) {
off = n * 18;
- for (b = off
, c = 0
; b < 18 + off; b++) {
+ for (b = off; b < 18 + off; b++) {
/* This channel to all outputs ? */
for (c = 0; c <= 8; c++) {
snd_s1810c_send_ctl_packet(dev, a, b, c, 0, e);