Commit 5d3c2f7d authored by Jingoo Han's avatar Jingoo Han Committed by Johannes Berg

wireless: iwlwifi: 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: default avatarJingoo Han <jg1.han@samsung.com>
Signed-off-by: default avatarJohannes Berg <johannes.berg@intel.com>
parent c90ca507
...@@ -349,7 +349,6 @@ static int iwl_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent) ...@@ -349,7 +349,6 @@ static int iwl_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
iwl_drv_stop(trans_pcie->drv); iwl_drv_stop(trans_pcie->drv);
out_free_trans: out_free_trans:
iwl_trans_pcie_free(iwl_trans); iwl_trans_pcie_free(iwl_trans);
pci_set_drvdata(pdev, NULL);
return ret; return ret;
} }
...@@ -360,8 +359,6 @@ static void iwl_pci_remove(struct pci_dev *pdev) ...@@ -360,8 +359,6 @@ static void iwl_pci_remove(struct pci_dev *pdev)
iwl_drv_stop(trans_pcie->drv); iwl_drv_stop(trans_pcie->drv);
iwl_trans_pcie_free(trans); iwl_trans_pcie_free(trans);
pci_set_drvdata(pdev, NULL);
} }
#ifdef CONFIG_PM_SLEEP #ifdef CONFIG_PM_SLEEP
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment