mirror of
https://github.com/torvalds/linux.git
synced 2024-12-29 14:21:47 +00:00
Revert "tc35815: fix iomap leak"
This reverts commit b31fb86815
.
pcim_*() managed drivers do not need explicit resource
releasing like this.
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
28bd620c7a
commit
1e2cfeef06
@ -854,7 +854,7 @@ static int __devinit tc35815_init_one(struct pci_dev *pdev,
|
||||
|
||||
rc = register_netdev(dev);
|
||||
if (rc)
|
||||
goto err_out_iounmap;
|
||||
goto err_out;
|
||||
|
||||
memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
|
||||
printk(KERN_INFO "%s: %s at 0x%lx, %pM, IRQ %d\n",
|
||||
@ -872,8 +872,6 @@ static int __devinit tc35815_init_one(struct pci_dev *pdev,
|
||||
|
||||
err_out_unregister:
|
||||
unregister_netdev(dev);
|
||||
err_out_iounmap:
|
||||
pcim_iounmap_regions(pdev, 1 << 1);
|
||||
err_out:
|
||||
free_netdev(dev);
|
||||
return rc;
|
||||
|
Loading…
Reference in New Issue
Block a user