Commit 93466212 authored by Jarkko Nikula's avatar Jarkko Nikula Committed by Jonathan Cameron

counter: intel-qep: Use to_pci_dev() helper

Use to_pci_dev() helper instead of container_of(d, struct pci_dev, dev);
Suggested-by: default avatarJonathan Cameron <jic23@kernel.org>
Signed-off-by: default avatarJarkko Nikula <jarkko.nikula@linux.intel.com>
Acked-by: default avatarWilliam Breathitt Gray <vilhelm.gray@gmail.com>
Link: https://lore.kernel.org/r/20210611115558.796338-2-jarkko.nikula@linux.intel.comSigned-off-by: default avatarJonathan Cameron <Jonathan.Cameron@huawei.com>
parent ac3bd9d6
...@@ -475,7 +475,7 @@ static void intel_qep_remove(struct pci_dev *pci) ...@@ -475,7 +475,7 @@ static void intel_qep_remove(struct pci_dev *pci)
static int __maybe_unused intel_qep_suspend(struct device *dev) static int __maybe_unused intel_qep_suspend(struct device *dev)
{ {
struct pci_dev *pdev = container_of(dev, struct pci_dev, dev); struct pci_dev *pdev = to_pci_dev(dev);
struct intel_qep *qep = pci_get_drvdata(pdev); struct intel_qep *qep = pci_get_drvdata(pdev);
qep->qepcon = intel_qep_readl(qep, INTEL_QEPCON); qep->qepcon = intel_qep_readl(qep, INTEL_QEPCON);
...@@ -487,7 +487,7 @@ static int __maybe_unused intel_qep_suspend(struct device *dev) ...@@ -487,7 +487,7 @@ static int __maybe_unused intel_qep_suspend(struct device *dev)
static int __maybe_unused intel_qep_resume(struct device *dev) static int __maybe_unused intel_qep_resume(struct device *dev)
{ {
struct pci_dev *pdev = container_of(dev, struct pci_dev, dev); struct pci_dev *pdev = to_pci_dev(dev);
struct intel_qep *qep = pci_get_drvdata(pdev); struct intel_qep *qep = pci_get_drvdata(pdev);
/* /*
......
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