Call to 'pci_free_irq_vectors()' are missing both in the error handling path of the probe function, and in the remove function. So add them. Fixes: 4c21541d8da17fb ("i2c: thunderx: Replace pci_enable_msix()") Signed-off-by: Dejin Zheng <zhengdejin5@xxxxxxxxx> --- drivers/i2c/busses/i2c-thunderx-pcidrv.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/drivers/i2c/busses/i2c-thunderx-pcidrv.c b/drivers/i2c/busses/i2c-thunderx-pcidrv.c index 12c90aa0900e..6a338be4d4b7 100644 --- a/drivers/i2c/busses/i2c-thunderx-pcidrv.c +++ b/drivers/i2c/busses/i2c-thunderx-pcidrv.c @@ -199,11 +199,11 @@ static int thunder_i2c_probe_pci(struct pci_dev *pdev, ret = devm_request_irq(dev, pci_irq_vector(pdev, 0), octeon_i2c_isr, 0, DRV_NAME, i2c); if (ret) - goto error; + goto error_free_irq; ret = octeon_i2c_init_lowlevel(i2c); if (ret) - goto error; + goto error_free_irq; octeon_i2c_set_clock(i2c); @@ -219,7 +219,7 @@ static int thunder_i2c_probe_pci(struct pci_dev *pdev, ret = i2c_add_adapter(&i2c->adap); if (ret) - goto error; + goto error_free_irq; dev_info(i2c->dev, "Probed. Set system clock to %u\n", i2c->sys_freq); @@ -229,6 +229,8 @@ static int thunder_i2c_probe_pci(struct pci_dev *pdev, return 0; +error_free_irq: + pci_free_irq_vectors(pdev); error: thunder_i2c_clock_disable(dev, i2c->clk); return ret; @@ -238,6 +240,7 @@ static void thunder_i2c_remove_pci(struct pci_dev *pdev) { struct octeon_i2c *i2c = pci_get_drvdata(pdev); + pci_free_irq_vectors(pdev); thunder_i2c_smbus_remove(i2c); thunder_i2c_clock_disable(&pdev->dev, i2c->clk); i2c_del_adapter(&i2c->adap); -- 2.25.0