Skip to content

Commit

Permalink
Revert "tc35815: fix iomap leak"
Browse files Browse the repository at this point in the history
This reverts commit b31fb86.

pcim_*() managed drivers do not need explicit resource
releasing like this.

Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
David S. Miller committed Jul 13, 2010
1 parent 28bd620 commit 1e2cfee
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions drivers/net/tc35815.c
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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;
Expand Down

0 comments on commit 1e2cfee

Please sign in to comment.