Commit 90b51e3c authored by Chuhong Yuan's avatar Chuhong Yuan Committed by Ulf Hansson

mmc: sdhci-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>
Acked-by: default avatarAdrian Hunter <adrian.hunter@intel.com>
Signed-off-by: default avatarUlf Hansson <ulf.hansson@linaro.org>
parent f84e411c
...@@ -1759,8 +1759,7 @@ static const struct sdhci_ops sdhci_pci_ops = { ...@@ -1759,8 +1759,7 @@ static const struct sdhci_ops sdhci_pci_ops = {
#ifdef CONFIG_PM_SLEEP #ifdef CONFIG_PM_SLEEP
static int sdhci_pci_suspend(struct device *dev) static int sdhci_pci_suspend(struct device *dev)
{ {
struct pci_dev *pdev = to_pci_dev(dev); struct sdhci_pci_chip *chip = dev_get_drvdata(dev);
struct sdhci_pci_chip *chip = pci_get_drvdata(pdev);
if (!chip) if (!chip)
return 0; return 0;
...@@ -1773,8 +1772,7 @@ static int sdhci_pci_suspend(struct device *dev) ...@@ -1773,8 +1772,7 @@ static int sdhci_pci_suspend(struct device *dev)
static int sdhci_pci_resume(struct device *dev) static int sdhci_pci_resume(struct device *dev)
{ {
struct pci_dev *pdev = to_pci_dev(dev); struct sdhci_pci_chip *chip = dev_get_drvdata(dev);
struct sdhci_pci_chip *chip = pci_get_drvdata(pdev);
if (!chip) if (!chip)
return 0; return 0;
...@@ -1789,8 +1787,7 @@ static int sdhci_pci_resume(struct device *dev) ...@@ -1789,8 +1787,7 @@ static int sdhci_pci_resume(struct device *dev)
#ifdef CONFIG_PM #ifdef CONFIG_PM
static int sdhci_pci_runtime_suspend(struct device *dev) static int sdhci_pci_runtime_suspend(struct device *dev)
{ {
struct pci_dev *pdev = to_pci_dev(dev); struct sdhci_pci_chip *chip = dev_get_drvdata(dev);
struct sdhci_pci_chip *chip = pci_get_drvdata(pdev);
if (!chip) if (!chip)
return 0; return 0;
...@@ -1803,8 +1800,7 @@ static int sdhci_pci_runtime_suspend(struct device *dev) ...@@ -1803,8 +1800,7 @@ static int sdhci_pci_runtime_suspend(struct device *dev)
static int sdhci_pci_runtime_resume(struct device *dev) static int sdhci_pci_runtime_resume(struct device *dev)
{ {
struct pci_dev *pdev = to_pci_dev(dev); struct sdhci_pci_chip *chip = dev_get_drvdata(dev);
struct sdhci_pci_chip *chip = pci_get_drvdata(pdev);
if (!chip) if (!chip)
return 0; return 0;
......
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