[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <CAPDyKFpo3P_e1ufxyOLLxdeRLe-z1-1Yx5xERD2Hkf0OQbBh8w@mail.gmail.com>
Date: Wed, 24 Jul 2019 16:08:28 +0200
From: Ulf Hansson <ulf.hansson@...aro.org>
To: Chuhong Yuan <hslester96@...il.com>
Cc: Adrian Hunter <adrian.hunter@...el.com>,
"linux-mmc@...r.kernel.org" <linux-mmc@...r.kernel.org>,
Linux Kernel Mailing List <linux-kernel@...r.kernel.org>
Subject: Re: [PATCH] mmc: sdhci-pci: Use dev_get_drvdata
On Tue, 23 Jul 2019 at 14:47, Chuhong Yuan <hslester96@...il.com> wrote:
>
> Instead of using to_pci_dev + pci_get_drvdata,
> use dev_get_drvdata to make code simpler.
>
> Signed-off-by: Chuhong Yuan <hslester96@...il.com>
Applied for next, thanks!
Kind regards
Uffe
> ---
> drivers/mmc/host/sdhci-pci-core.c | 12 ++++--------
> 1 file changed, 4 insertions(+), 8 deletions(-)
>
> diff --git a/drivers/mmc/host/sdhci-pci-core.c b/drivers/mmc/host/sdhci-pci-core.c
> index 4041878eb0f3..d10aceed5bb7 100644
> --- a/drivers/mmc/host/sdhci-pci-core.c
> +++ b/drivers/mmc/host/sdhci-pci-core.c
> @@ -1759,8 +1759,7 @@ static const struct sdhci_ops sdhci_pci_ops = {
> #ifdef CONFIG_PM_SLEEP
> static int sdhci_pci_suspend(struct device *dev)
> {
> - struct pci_dev *pdev = to_pci_dev(dev);
> - struct sdhci_pci_chip *chip = pci_get_drvdata(pdev);
> + struct sdhci_pci_chip *chip = dev_get_drvdata(dev);
>
> if (!chip)
> return 0;
> @@ -1773,8 +1772,7 @@ static int sdhci_pci_suspend(struct device *dev)
>
> static int sdhci_pci_resume(struct device *dev)
> {
> - struct pci_dev *pdev = to_pci_dev(dev);
> - struct sdhci_pci_chip *chip = pci_get_drvdata(pdev);
> + struct sdhci_pci_chip *chip = dev_get_drvdata(dev);
>
> if (!chip)
> return 0;
> @@ -1789,8 +1787,7 @@ static int sdhci_pci_resume(struct device *dev)
> #ifdef CONFIG_PM
> static int sdhci_pci_runtime_suspend(struct device *dev)
> {
> - struct pci_dev *pdev = to_pci_dev(dev);
> - struct sdhci_pci_chip *chip = pci_get_drvdata(pdev);
> + struct sdhci_pci_chip *chip = dev_get_drvdata(dev);
>
> if (!chip)
> return 0;
> @@ -1803,8 +1800,7 @@ static int sdhci_pci_runtime_suspend(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 = pci_get_drvdata(pdev);
> + struct sdhci_pci_chip *chip = dev_get_drvdata(dev);
>
> if (!chip)
> return 0;
> --
> 2.20.1
>
Powered by blists - more mailing lists