We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bbd6677 + ccd0dcb commit 7889cd6Copy full SHA for 7889cd6
arch/arm/mach-bcm2708/dma.c
@@ -71,6 +71,8 @@ bcm_dma_start(void __iomem *dma_chan_base, dma_addr_t control_block)
71
writel(control_block, dma_chan_base + BCM2708_DMA_ADDR);
72
writel(BCM2708_DMA_ACTIVE, dma_chan_base + BCM2708_DMA_CS);
73
}
74
+EXPORT_SYMBOL_GPL(bcm_dma_start);
75
+
76
77
extern void bcm_dma_wait_idle(void __iomem *dma_chan_base)
78
{
@@ -80,8 +82,7 @@ extern void bcm_dma_wait_idle(void __iomem *dma_chan_base)
80
82
while (readl(dma_chan_base + BCM2708_DMA_CS) & BCM2708_DMA_ACTIVE)
81
83
cpu_relax();
84
-
-EXPORT_SYMBOL_GPL(bcm_dma_start);
85
+EXPORT_SYMBOL_GPL(bcm_dma_wait_idle);
86
87
/* Complete an ongoing DMA (assuming its results are to be ignored)
88
Does nothing if there is no DMA in progress.
0 commit comments