mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-07 19:30:30 +09:00
cxgb4: Signedness bug in init_one()
[ Upstream commit2861831476] The "chip" variable is an enum, and it's treated as unsigned int by GCC in this context so the error handling isn't triggered. Fixes:e8d452923a("cxgb4: clean up init_one") Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
e33906f580
commit
aaf27e4fff
@@ -5452,7 +5452,7 @@ static int init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
|
||||
whoami = t4_read_reg(adapter, PL_WHOAMI_A);
|
||||
pci_read_config_word(pdev, PCI_DEVICE_ID, &device_id);
|
||||
chip = t4_get_chip_type(adapter, CHELSIO_PCI_ID_VER(device_id));
|
||||
if (chip < 0) {
|
||||
if ((int)chip < 0) {
|
||||
dev_err(&pdev->dev, "Device %d is not supported\n", device_id);
|
||||
err = chip;
|
||||
goto out_free_adapter;
|
||||
|
||||
Reference in New Issue
Block a user