mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 00:04:15 +08:00
net: hippi: remove unnecessary pci_set_drvdata()
The driver core clears the driver data to NULL after device_release or on probe failure. Thus, it is not needed to manually clear the device driver data to NULL. Signed-off-by: Jingoo Han <jg1.han@samsung.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
788a8b6dd3
commit
79ac7c9411
@ -213,10 +213,8 @@ static int rr_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
|
||||
rrpriv->tx_ring_dma);
|
||||
if (rrpriv->regs)
|
||||
pci_iounmap(pdev, rrpriv->regs);
|
||||
if (pdev) {
|
||||
if (pdev)
|
||||
pci_release_regions(pdev);
|
||||
pci_set_drvdata(pdev, NULL);
|
||||
}
|
||||
out2:
|
||||
free_netdev(dev);
|
||||
out3:
|
||||
@ -244,7 +242,6 @@ static void rr_remove_one(struct pci_dev *pdev)
|
||||
pci_iounmap(pdev, rr->regs);
|
||||
pci_release_regions(pdev);
|
||||
pci_disable_device(pdev);
|
||||
pci_set_drvdata(pdev, NULL);
|
||||
free_netdev(dev);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user