Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

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
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -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);
out_free_trans:
	iwl_trans_pcie_free(iwl_trans);
	pci_set_drvdata(pdev, NULL);
	return ret;
}

@@ -360,8 +359,6 @@ static void iwl_pci_remove(struct pci_dev *pdev)

	iwl_drv_stop(trans_pcie->drv);
	iwl_trans_pcie_free(trans);

	pci_set_drvdata(pdev, NULL);
}

#ifdef CONFIG_PM_SLEEP