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:
committed by
John W. Linville
parent
c4978e251f
commit
8d450935ae
@ -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);
|
||||
|
Reference in New Issue
Block a user