floppy: cleanup: remove redundant assignment to nr_sectors
authorJiapeng Chong <jiapeng.chong@linux.alibaba.com>
Fri, 30 Apr 2021 09:26:45 +0000 (17:26 +0800)
committerDenis Efremov <efremov@linux.com>
Tue, 15 Jun 2021 06:18:51 +0000 (09:18 +0300)
commit30ab5db7ee787c88236376ce6c88b53d613fcae2
tree4fae5e732070a6fcfc7c3caef372887e515db116
parentd07f3b081ee632268786601f55e1334d1f68b997
floppy: cleanup: remove redundant assignment to nr_sectors

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

Clean up the following clang-analyzer warning:

drivers/block/floppy.c:2333:2: warning: Value stored to 'nr_sectors' is
never read [clang-analyzer-deadcode.DeadStores].

Link: https://lore.kernel.org/r/1619774805-121562-1-git-send-email-jiapeng.chong@linux.alibaba.com
Reported-by: Abaci Robot <abaci@linux.alibaba.com>
Signed-off-by: Jiapeng Chong <jiapeng.chong@linux.alibaba.com>
Signed-off-by: Denis Efremov <efremov@linux.com>
drivers/block/floppy.c