From: Christophe JAILLET Date: Fri, 11 Jun 2021 06:13:39 +0000 (+0200) Subject: alx: Fix an error handling path in 'alx_probe()' X-Git-Tag: v5.13-rc7~8^2~48 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=33e381448cf7a05d76ac0b47d4a6531ecd0e5c53;p=thirdparty%2Fkernel%2Flinux.git alx: Fix an error handling path in 'alx_probe()' 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: ab69bde6b2e9 ("alx: add a simple AR816x/AR817x device driver") Signed-off-by: Christophe JAILLET Signed-off-by: David S. Miller --- diff --git a/drivers/net/ethernet/atheros/alx/main.c b/drivers/net/ethernet/atheros/alx/main.c index b3d74332ed330..7748b276e5fde 100644 --- a/drivers/net/ethernet/atheros/alx/main.c +++ b/drivers/net/ethernet/atheros/alx/main.c @@ -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;