lkml.org 
[lkml]   [2019]   [Jul]   [24]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
From
Date
SubjectRe: [PATCH] mmc: sdhci-pci: Use dev_get_drvdata
On Tue, 23 Jul 2019 at 14:47, Chuhong Yuan <hslester96@gmail.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@gmail.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
>

\
 
 \ /
  Last update: 2019-07-24 16:09    [W:0.032 / U:1.744 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site