diff options
author | Jingoo Han <jg1.han@samsung.com> | 2013-05-05 23:53:33 -0400 |
---|---|---|
committer | Vinod Koul <vinod.koul@intel.com> | 2013-07-05 02:10:34 -0400 |
commit | 36c6df5062568f0b923930b63e2e477cb3a391bd (patch) | |
tree | 8dbb77da2cdf93b0585b7825875861740d5eb102 /drivers/dma | |
parent | 3208b3701b98dcd14f0d5f0a36dd33d21b0b458f (diff) |
dma: at_hdmac: remove unnecessary platform_set_drvdata()
The driver core clears the driver data to NULL after device_release
or on probe failure, since commit 0998d0631001288a5974afc0b2a5f568bcdecb4d
(device-core: Ensure drvdata = NULL when no driver is bound).
Thus, it is not needed to manually clear the device driver data to NULL.
Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Acked-by: Nicolas Ferre <nicolas.ferre@atmel.com>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
Diffstat (limited to 'drivers/dma')
-rw-r--r-- | drivers/dma/at_hdmac.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/dma/at_hdmac.c b/drivers/dma/at_hdmac.c index 5ce89368a8db..6db5228f4134 100644 --- a/drivers/dma/at_hdmac.c +++ b/drivers/dma/at_hdmac.c | |||
@@ -1570,7 +1570,6 @@ err_of_dma_controller_register: | |||
1570 | dma_async_device_unregister(&atdma->dma_common); | 1570 | dma_async_device_unregister(&atdma->dma_common); |
1571 | dma_pool_destroy(atdma->dma_desc_pool); | 1571 | dma_pool_destroy(atdma->dma_desc_pool); |
1572 | err_pool_create: | 1572 | err_pool_create: |
1573 | platform_set_drvdata(pdev, NULL); | ||
1574 | free_irq(platform_get_irq(pdev, 0), atdma); | 1573 | free_irq(platform_get_irq(pdev, 0), atdma); |
1575 | err_irq: | 1574 | err_irq: |
1576 | clk_disable(atdma->clk); | 1575 | clk_disable(atdma->clk); |
@@ -1595,7 +1594,6 @@ static int at_dma_remove(struct platform_device *pdev) | |||
1595 | dma_async_device_unregister(&atdma->dma_common); | 1594 | dma_async_device_unregister(&atdma->dma_common); |
1596 | 1595 | ||
1597 | dma_pool_destroy(atdma->dma_desc_pool); | 1596 | dma_pool_destroy(atdma->dma_desc_pool); |
1598 | platform_set_drvdata(pdev, NULL); | ||
1599 | free_irq(platform_get_irq(pdev, 0), atdma); | 1597 | free_irq(platform_get_irq(pdev, 0), atdma); |
1600 | 1598 | ||
1601 | list_for_each_entry_safe(chan, _chan, &atdma->dma_common.channels, | 1599 | list_for_each_entry_safe(chan, _chan, &atdma->dma_common.channels, |