diff options
author | Yang Li <yang.lee@linux.alibaba.com> | 2021-09-03 14:42:33 +0800 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2021-09-22 12:28:02 +0200 |
commit | e76ccbdedbddaf14c65b50bbf2ffe8118958d15e (patch) | |
tree | 6c660a2717f10703618c25ba97dbd4ce9ba8dd14 | |
parent | 70ac967a7b886329f7308b966a690f9d4a94f958 (diff) | |
download | linux-stable-e76ccbdedbddaf14c65b50bbf2ffe8118958d15e.tar.gz linux-stable-e76ccbdedbddaf14c65b50bbf2ffe8118958d15e.tar.bz2 linux-stable-e76ccbdedbddaf14c65b50bbf2ffe8118958d15e.zip |
ethtool: Fix an error code in cxgb2.c
[ Upstream commit 7db8263a12155c7ae4ad97e850f1e499c73765fc ]
When adapter->registered_device_map is NULL, the value of err is
uncertain, we set err to -EINVAL to avoid ambiguity.
Clean up smatch warning:
drivers/net/ethernet/chelsio/cxgb/cxgb2.c:1114 init_one() warn: missing
error code 'err'
Reported-by: Abaci Robot <abaci@linux.alibaba.com>
Signed-off-by: Yang Li <yang.lee@linux.alibaba.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Sasha Levin <sashal@kernel.org>
-rw-r--r-- | drivers/net/ethernet/chelsio/cxgb/cxgb2.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/ethernet/chelsio/cxgb/cxgb2.c b/drivers/net/ethernet/chelsio/cxgb/cxgb2.c index 0e4a0f413960..c6db85fe1629 100644 --- a/drivers/net/ethernet/chelsio/cxgb/cxgb2.c +++ b/drivers/net/ethernet/chelsio/cxgb/cxgb2.c @@ -1153,6 +1153,7 @@ static int init_one(struct pci_dev *pdev, const struct pci_device_id *ent) if (!adapter->registered_device_map) { pr_err("%s: could not register any net devices\n", pci_name(pdev)); + err = -EINVAL; goto out_release_adapter_res; } |