mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
wireless: rtlwifi: 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> Acked-by: Larry Finger <Larry.Finger@lwfinger.net> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
c4978e251f
commit
8d450935ae
1 changed files with 0 additions and 3 deletions
|
@ -2009,7 +2009,6 @@ fail2:
|
||||||
fail1:
|
fail1:
|
||||||
if (hw)
|
if (hw)
|
||||||
ieee80211_free_hw(hw);
|
ieee80211_free_hw(hw);
|
||||||
pci_set_drvdata(pdev, NULL);
|
|
||||||
pci_disable_device(pdev);
|
pci_disable_device(pdev);
|
||||||
|
|
||||||
return err;
|
return err;
|
||||||
|
@ -2064,8 +2063,6 @@ void rtl_pci_disconnect(struct pci_dev *pdev)
|
||||||
|
|
||||||
rtl_pci_disable_aspm(hw);
|
rtl_pci_disable_aspm(hw);
|
||||||
|
|
||||||
pci_set_drvdata(pdev, NULL);
|
|
||||||
|
|
||||||
ieee80211_free_hw(hw);
|
ieee80211_free_hw(hw);
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL(rtl_pci_disconnect);
|
EXPORT_SYMBOL(rtl_pci_disconnect);
|
||||||
|
|
Loading…
Add table
Reference in a new issue