]> git.baikalelectronics.ru Git - kernel.git/commitdiff
alx: Fix an error handling path in 'alx_probe()'
authorChristophe JAILLET <christophe.jaillet@wanadoo.fr>
Fri, 11 Jun 2021 06:13:39 +0000 (08:13 +0200)
committerDavid S. Miller <davem@davemloft.net>
Fri, 11 Jun 2021 18:12:54 +0000 (11:12 -0700)
If an error occurs after a 'pci_enable_pcie_error_reporting()' call, it
must be undone by a corresponding 'pci_disable_pcie_error_reporting()'
call, as already done in the remove function.

Fixes: 45bd0a6f746a ("alx: add a simple AR816x/AR817x device driver")
Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/atheros/alx/main.c

index b3d74332ed330451f5607ac19f0da8549377946e..7748b276e5fdef1315080f874f3a719e93d9eaaf 100644 (file)
@@ -1849,6 +1849,7 @@ out_free_netdev:
        free_netdev(netdev);
 out_pci_release:
        pci_release_mem_regions(pdev);
+       pci_disable_pcie_error_reporting(pdev);
 out_pci_disable:
        pci_disable_device(pdev);
        return err;