mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-09-07 22:23:00 +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
@ -2009,7 +2009,6 @@ int rtl_pci_probe(struct pci_dev *pdev,
|
|||||||
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…
Reference in New Issue
Block a user