i40e: remove redundant initialization of read_size
authorColin Ian King <colin.king@canonical.com>
Sun, 5 Nov 2017 13:04:29 +0000 (13:04 +0000)
committerJeff Kirsher <jeffrey.t.kirsher@intel.com>
Wed, 10 Jan 2018 20:41:21 +0000 (12:41 -0800)
commit793c6f8c85d6d8cc6aa9cd68ee3552d2591f30e0
tree89b76ed0d7424a97b79e027fc8bb8b0ef150e8d9
parentf2fc31efd697e2ff64023b717aca4db29de3a034
i40e: remove redundant initialization of read_size

Variable read_size is initialized and this value is never read, it is
instead set inside the do-loop, hence the initialization is redundant
and can be removed. Cleans up clang warning:

drivers/net/ethernet/intel/i40e/i40e_nvm.c:390:6: warning: Value stored
to 'read_size' during its initialization is never read

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Tested-by: Aaron Brown <aaron.f.brown@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
drivers/net/ethernet/intel/i40e/i40e_nvm.c