aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRussell King <rmk+kernel@arm.linux.org.uk>2013-06-27 08:45:16 -0400
committerRussell King <rmk+kernel@arm.linux.org.uk>2013-10-31 10:49:14 -0400
commit94cb0e7980e27b0a303074568de76080de06a693 (patch)
treebb74862c3e24f0e67b4ff890197c28917015984c
parent460d47db9da17322f823e3c16123666ef4c6c838 (diff)
DMA-API: dma: edma.c: no need to explicitly initialize DMA masks
register_platform_device_full() can setup the DMA mask provided the appropriate member is set in struct platform_device_info. So lets make that be the case. This avoids a direct reference to the DMA masks by this driver. While here, add the dma_set_mask_and_coherent() call which the DMA API requires DMA-using drivers to call. Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
-rw-r--r--drivers/dma/edma.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/drivers/dma/edma.c b/drivers/dma/edma.c
index ff50ff4c6a57..fd5e48c29746 100644
--- a/drivers/dma/edma.c
+++ b/drivers/dma/edma.c
@@ -631,6 +631,10 @@ static int edma_probe(struct platform_device *pdev)
631 struct edma_cc *ecc; 631 struct edma_cc *ecc;
632 int ret; 632 int ret;
633 633
634 ret = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
635 if (ret)
636 return ret;
637
634 ecc = devm_kzalloc(&pdev->dev, sizeof(*ecc), GFP_KERNEL); 638 ecc = devm_kzalloc(&pdev->dev, sizeof(*ecc), GFP_KERNEL);
635 if (!ecc) { 639 if (!ecc) {
636 dev_err(&pdev->dev, "Can't allocate controller\n"); 640 dev_err(&pdev->dev, "Can't allocate controller\n");
@@ -702,11 +706,13 @@ static struct platform_device *pdev0, *pdev1;
702static const struct platform_device_info edma_dev_info0 = { 706static const struct platform_device_info edma_dev_info0 = {
703 .name = "edma-dma-engine", 707 .name = "edma-dma-engine",
704 .id = 0, 708 .id = 0,
709 .dma_mask = DMA_BIT_MASK(32),
705}; 710};
706 711
707static const struct platform_device_info edma_dev_info1 = { 712static const struct platform_device_info edma_dev_info1 = {
708 .name = "edma-dma-engine", 713 .name = "edma-dma-engine",
709 .id = 1, 714 .id = 1,
715 .dma_mask = DMA_BIT_MASK(32),
710}; 716};
711 717
712static int edma_init(void) 718static int edma_init(void)
@@ -720,8 +726,6 @@ static int edma_init(void)
720 ret = PTR_ERR(pdev0); 726 ret = PTR_ERR(pdev0);
721 goto out; 727 goto out;
722 } 728 }
723 pdev0->dev.dma_mask = &pdev0->dev.coherent_dma_mask;
724 pdev0->dev.coherent_dma_mask = DMA_BIT_MASK(32);
725 } 729 }
726 730
727 if (EDMA_CTLRS == 2) { 731 if (EDMA_CTLRS == 2) {
@@ -731,8 +735,6 @@ static int edma_init(void)
731 platform_device_unregister(pdev0); 735 platform_device_unregister(pdev0);
732 ret = PTR_ERR(pdev1); 736 ret = PTR_ERR(pdev1);
733 } 737 }
734 pdev1->dev.dma_mask = &pdev1->dev.coherent_dma_mask;
735 pdev1->dev.coherent_dma_mask = DMA_BIT_MASK(32);
736 } 738 }
737 739
738out: 740out: