ALSA: usb-audio: Remove redundant assignment to len
authorJiapeng Chong <jiapeng.chong@linux.alibaba.com>
Tue, 27 Apr 2021 10:26:34 +0000 (18:26 +0800)
committerTakashi Iwai <tiwai@suse.de>
Wed, 28 Apr 2021 10:07:39 +0000 (12:07 +0200)
commita3ffcebc87480664aef7c8283394d4cf2aec327c
tree02a2ec6744ad686918170b28cc038b6ff7fb47c5
parent970e3012c04c96351c413f193a9c909e6d871ce2
ALSA: usb-audio: Remove redundant assignment to len

Variable len is set to zero but this value is never read as it is
overwritten with a new value later on, hence it is a redundant
assignment and can be removed.

Cleans up the following clang-analyzer warning:

sound/usb/mixer.c:2713:3: warning: Value stored to 'len' is never read
[clang-analyzer-deadcode.DeadStores].

Reported-by: Abaci Robot <abaci@linux.alibaba.com>
Signed-off-by: Jiapeng Chong <jiapeng.chong@linux.alibaba.com>
Link: https://lore.kernel.org/r/1619519194-57806-1-git-send-email-jiapeng.chong@linux.alibaba.com
Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/usb/mixer.c