diff options
author | Vinod Koul <vkoul@kernel.org> | 2018-06-04 06:58:30 +0200 |
---|---|---|
committer | Vinod Koul <vkoul@kernel.org> | 2018-06-04 06:58:30 +0200 |
commit | 53cf4c9b02c0a155f385e105b233a4d984e17117 (patch) | |
tree | 7f73bd960431a848dcf7d7578bde73a6ca9ac720 /drivers/dma | |
parent | Merge branch 'topic/fsl' into for-linus (diff) | |
parent | dmaengine: idma64: simplify getting .drvdata (diff) | |
download | linux-53cf4c9b02c0a155f385e105b233a4d984e17117.tar.xz linux-53cf4c9b02c0a155f385e105b233a4d984e17117.zip |
Merge branch 'topic/idma' into for-linus
Diffstat (limited to 'drivers/dma')
-rw-r--r-- | drivers/dma/idma64.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/dma/idma64.c b/drivers/dma/idma64.c index 1953e57505f4..e5c911200bdb 100644 --- a/drivers/dma/idma64.c +++ b/drivers/dma/idma64.c @@ -670,8 +670,7 @@ static int idma64_platform_remove(struct platform_device *pdev) static int idma64_pm_suspend(struct device *dev) { - struct platform_device *pdev = to_platform_device(dev); - struct idma64_chip *chip = platform_get_drvdata(pdev); + struct idma64_chip *chip = dev_get_drvdata(dev); idma64_off(chip->idma64); return 0; @@ -679,8 +678,7 @@ static int idma64_pm_suspend(struct device *dev) static int idma64_pm_resume(struct device *dev) { - struct platform_device *pdev = to_platform_device(dev); - struct idma64_chip *chip = platform_get_drvdata(pdev); + struct idma64_chip *chip = dev_get_drvdata(dev); idma64_on(chip->idma64); return 0; |