diff options
author | Christophe JAILLET <christophe.jaillet@wanadoo.fr> | 2021-05-13 10:44:49 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2021-05-13 23:13:34 +0300 |
commit | a93a0a15876d2a077a3bc260b387d2457a051f24 (patch) | |
tree | 9af9e3d6c7ebb5f3b197cb1d6b4f39c32822404e /drivers/net/mdio | |
parent | 832ce924b1a14e139e184a6da9f5a69a5e47b256 (diff) | |
download | linux-a93a0a15876d2a077a3bc260b387d2457a051f24.tar.xz |
net: mdio: thunder: Fix a double free issue in the .remove function
'bus->mii_bus' have been allocated with 'devm_mdiobus_alloc_size()' in the
probe function. So it must not be freed explicitly or there will be a
double free.
Remove the incorrect 'mdiobus_free' in the remove function.
Fixes: 379d7ac7ca31 ("phy: mdio-thunder: Add driver for Cavium Thunder SoC MDIO buses.")
Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Reviewed-by: Russell King <rmk+kernel@armlinux.org.uk>
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/mdio')
-rw-r--r-- | drivers/net/mdio/mdio-thunder.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/net/mdio/mdio-thunder.c b/drivers/net/mdio/mdio-thunder.c index cb1761693b69..822d2cdd2f35 100644 --- a/drivers/net/mdio/mdio-thunder.c +++ b/drivers/net/mdio/mdio-thunder.c @@ -126,7 +126,6 @@ static void thunder_mdiobus_pci_remove(struct pci_dev *pdev) continue; mdiobus_unregister(bus->mii_bus); - mdiobus_free(bus->mii_bus); oct_mdio_writeq(0, bus->register_base + SMI_EN); } pci_release_regions(pdev); |