Commit 90a6c997 authored by Lino Sanfilippo's avatar Lino Sanfilippo Committed by David S. Miller

net: ena: remove superfluous check in ena_remove()

The check in ena_remove() for the pci driver data not being NULL is not
needed, since it is always set in the probe() function. Remove the
superfluous check.
Signed-off-by: default avatarLino Sanfilippo <LinoSanfilippo@gmx.de>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 2317c6b5
......@@ -3163,12 +3163,6 @@ static void ena_remove(struct pci_dev *pdev)
struct ena_com_dev *ena_dev;
struct net_device *netdev;
if (!adapter)
/* This device didn't load properly and it's resources
* already released, nothing to do
*/
return;
ena_dev = adapter->ena_dev;
netdev = adapter->netdev;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment