mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
i40e: declare rather than initialize int object
'err' would be overwritten immediately, so we should declare it only rather than initialize it to zero. Signed-off-by: Jean Sacren <sakiwit@gmail.com> Tested-by: Andrew Bowers <andrewx.bowers@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
This commit is contained in:
parent
2bc11c634e
commit
6f66a484f1
1 changed files with 1 additions and 1 deletions
|
@ -10159,7 +10159,7 @@ static int i40e_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
|
|||
static u16 pfs_found;
|
||||
u16 wol_nvm_bits;
|
||||
u16 link_status;
|
||||
int err = 0;
|
||||
int err;
|
||||
u32 len;
|
||||
u32 i;
|
||||
|
||||
|
|
Loading…
Reference in a new issue