aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Ian King <[email protected]>2022-04-05 14:54:12 +0100
committerTakashi Iwai <[email protected]>2022-04-05 18:19:29 +0200
commit6ac2eec3f008ed08dd20a9e3d598d792aee779ad (patch)
treec3f493f4906677bd7728c1533158f31047ccdf25
parente7ff672165c081e115aa8dbba52c9f6aa3078ce8 (diff)
ALSA: echoaudio: remove redundant assignment to variable i
The variable i is being assigned a value that is never read, it is being re-assigned in the following for-loop. The assignment is redundant and can be removed. Signed-off-by: Colin Ian King <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Takashi Iwai <[email protected]>
-rw-r--r--sound/pci/echoaudio/midi.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/sound/pci/echoaudio/midi.c b/sound/pci/echoaudio/midi.c
index 7be5c3327b16..47b2c023ee3d 100644
--- a/sound/pci/echoaudio/midi.c
+++ b/sound/pci/echoaudio/midi.c
@@ -124,7 +124,6 @@ static int midi_service_irq(struct echoaudio *chip)
return 0;
/* Get the MIDI data from the comm page */
- i = 1;
received = 0;
for (i = 1; i <= count; i++) {
/* Get the MIDI byte */