thermal: intel: Use dev_get_drvdata
Instead of using to_pci_dev + pci_get_drvdata, use dev_get_drvdata to make code simpler. Signed-off-by: Chuhong Yuan <hslester96@gmail.com> Signed-off-by: Zhang Rui <rui.zhang@intel.com>
This commit is contained in:
parent
4c8a342c11
commit
97e9cafe85
|
@ -371,16 +371,14 @@ static void intel_pch_thermal_remove(struct pci_dev *pdev)
|
||||||
|
|
||||||
static int intel_pch_thermal_suspend(struct device *device)
|
static int intel_pch_thermal_suspend(struct device *device)
|
||||||
{
|
{
|
||||||
struct pci_dev *pdev = to_pci_dev(device);
|
struct pch_thermal_device *ptd = dev_get_drvdata(device);
|
||||||
struct pch_thermal_device *ptd = pci_get_drvdata(pdev);
|
|
||||||
|
|
||||||
return ptd->ops->suspend(ptd);
|
return ptd->ops->suspend(ptd);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int intel_pch_thermal_resume(struct device *device)
|
static int intel_pch_thermal_resume(struct device *device)
|
||||||
{
|
{
|
||||||
struct pci_dev *pdev = to_pci_dev(device);
|
struct pch_thermal_device *ptd = dev_get_drvdata(device);
|
||||||
struct pch_thermal_device *ptd = pci_get_drvdata(pdev);
|
|
||||||
|
|
||||||
return ptd->ops->resume(ptd);
|
return ptd->ops->resume(ptd);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue