net: sunhme: Fix uninitialized return code
[ Upstream commit d61157414d0a591d10d27d0ce5873916614e5e31 ]
Fix an uninitialized return code if we never found a qfe slot. It would be
a bug if we ever got into this situation, but it's good to return something
tracable.
Fixes: acb3f35f92
("sunhme: forward the error code from pci_enable_device()")
Reported-by: kernel test robot <lkp@intel.com>
Reported-by: Dan Carpenter <error27@gmail.com>
Signed-off-by: Sean Anderson <seanga2@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
e3e55385fa
commit
10f7b4975b
@ -2834,7 +2834,7 @@ static int happy_meal_pci_probe(struct pci_dev *pdev,
|
||||
int i, qfe_slot = -1;
|
||||
char prom_name[64];
|
||||
u8 addr[ETH_ALEN];
|
||||
int err;
|
||||
int err = -ENODEV;
|
||||
|
||||
/* Now make sure pci_dev cookie is there. */
|
||||
#ifdef CONFIG_SPARC
|
||||
|
Loading…
Reference in New Issue
Block a user