From: Colin Ian King Date: Tue, 5 Apr 2022 13:54:12 +0000 (+0100) Subject: ALSA: echoaudio: remove redundant assignment to variable i X-Git-Tag: v6.6.17~6759^2~117 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6ac2eec3f008ed08dd20a9e3d598d792aee779ad;p=platform%2Fkernel%2Flinux-rpi.git 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 Link: https://lore.kernel.org/r/20220405135412.199251-1-colin.i.king@gmail.com Signed-off-by: Takashi Iwai --- diff --git a/sound/pci/echoaudio/midi.c b/sound/pci/echoaudio/midi.c index 7be5c33..47b2c02 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 */