mirror of
https://github.com/Fishwaldo/linux-bl808.git
synced 2025-06-17 20:25:19 +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:
|
||||
if (hw)
|
||||
ieee80211_free_hw(hw);
|
||||
pci_set_drvdata(pdev, NULL);
|
||||
pci_disable_device(pdev);
|
||||
|
||||
return err;
|
||||
|
@ -2064,8 +2063,6 @@ void rtl_pci_disconnect(struct pci_dev *pdev)
|
|||
|
||||
rtl_pci_disable_aspm(hw);
|
||||
|
||||
pci_set_drvdata(pdev, NULL);
|
||||
|
||||
ieee80211_free_hw(hw);
|
||||
}
|
||||
EXPORT_SYMBOL(rtl_pci_disconnect);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue