Commit 2a3b6f7b authored by Chuhong Yuan's avatar Chuhong Yuan Committed by Mark Brown

spi: dw-pci: Use dev_get_drvdata

Instead of using to_pci_dev + pci_get_drvdata,
use dev_get_drvdata to make code simpler.
Signed-off-by: default avatarChuhong Yuan <hslester96@gmail.com>
Link: https://lore.kernel.org/r/20190724122331.21856-1-hslester96@gmail.comSigned-off-by: default avatarMark Brown <broonie@kernel.org>
parent 3da9834d
...@@ -98,16 +98,14 @@ static void spi_pci_remove(struct pci_dev *pdev) ...@@ -98,16 +98,14 @@ static void spi_pci_remove(struct pci_dev *pdev)
#ifdef CONFIG_PM_SLEEP #ifdef CONFIG_PM_SLEEP
static int spi_suspend(struct device *dev) static int spi_suspend(struct device *dev)
{ {
struct pci_dev *pdev = to_pci_dev(dev); struct dw_spi *dws = dev_get_drvdata(dev);
struct dw_spi *dws = pci_get_drvdata(pdev);
return dw_spi_suspend_host(dws); return dw_spi_suspend_host(dws);
} }
static int spi_resume(struct device *dev) static int spi_resume(struct device *dev)
{ {
struct pci_dev *pdev = to_pci_dev(dev); struct dw_spi *dws = dev_get_drvdata(dev);
struct dw_spi *dws = pci_get_drvdata(pdev);
return dw_spi_resume_host(dws); return dw_spi_resume_host(dws);
} }
......
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