aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/dma/ppc4xx
diff options
context:
space:
mode:
authorJingoo Han <jg1.han@samsung.com>2013-05-23 21:10:13 -0400
committerVinod Koul <vinod.koul@intel.com>2013-07-05 02:10:32 -0400
commitdd3daca162f7411448dd80a8872a002c43cfd8e5 (patch)
tree7290eeccd9b925353cba16fe09faf389e099a764 /drivers/dma/ppc4xx
parentd48de6f1a81b3d10de0f5765aff1b3bd788617b0 (diff)
dma: use platform_{get,set}_drvdata()
Use the wrapper functions for getting and setting the driver data using platform_device instead of using dev_{get,set}_drvdata() with &pdev->dev, so we can directly pass a struct platform_device. Also, unnecessary dev_set_drvdata() is removed, because the driver core clears the driver data to NULL after device_release or on probe failure. Signed-off-by: Jingoo Han <jg1.han@samsung.com> Signed-off-by: Vinod Koul <vinod.koul@intel.com>
Diffstat (limited to 'drivers/dma/ppc4xx')
-rw-r--r--drivers/dma/ppc4xx/adma.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/dma/ppc4xx/adma.c b/drivers/dma/ppc4xx/adma.c
index 5d3d95569a1e..e68c51d13cb1 100644
--- a/drivers/dma/ppc4xx/adma.c
+++ b/drivers/dma/ppc4xx/adma.c
@@ -4481,7 +4481,7 @@ static int ppc440spe_adma_probe(struct platform_device *ofdev)
4481 adev->dev = &ofdev->dev; 4481 adev->dev = &ofdev->dev;
4482 adev->common.dev = &ofdev->dev; 4482 adev->common.dev = &ofdev->dev;
4483 INIT_LIST_HEAD(&adev->common.channels); 4483 INIT_LIST_HEAD(&adev->common.channels);
4484 dev_set_drvdata(&ofdev->dev, adev); 4484 platform_set_drvdata(ofdev, adev);
4485 4485
4486 /* create a channel */ 4486 /* create a channel */
4487 chan = kzalloc(sizeof(*chan), GFP_KERNEL); 4487 chan = kzalloc(sizeof(*chan), GFP_KERNEL);
@@ -4594,14 +4594,13 @@ out:
4594 */ 4594 */
4595static int ppc440spe_adma_remove(struct platform_device *ofdev) 4595static int ppc440spe_adma_remove(struct platform_device *ofdev)
4596{ 4596{
4597 struct ppc440spe_adma_device *adev = dev_get_drvdata(&ofdev->dev); 4597 struct ppc440spe_adma_device *adev = platform_get_drvdata(ofdev);
4598 struct device_node *np = ofdev->dev.of_node; 4598 struct device_node *np = ofdev->dev.of_node;
4599 struct resource res; 4599 struct resource res;
4600 struct dma_chan *chan, *_chan; 4600 struct dma_chan *chan, *_chan;
4601 struct ppc_dma_chan_ref *ref, *_ref; 4601 struct ppc_dma_chan_ref *ref, *_ref;
4602 struct ppc440spe_adma_chan *ppc440spe_chan; 4602 struct ppc440spe_adma_chan *ppc440spe_chan;
4603 4603
4604 dev_set_drvdata(&ofdev->dev, NULL);
4605 if (adev->id < PPC440SPE_ADMA_ENGINES_NUM) 4604 if (adev->id < PPC440SPE_ADMA_ENGINES_NUM)
4606 ppc440spe_adma_devices[adev->id] = -1; 4605 ppc440spe_adma_devices[adev->id] = -1;
4607 4606