Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Build failure caused by missing EXPORT_SYMBOL_GPL(bcm_dma_wait_idle); in dma.c #317

Merged
merged 1 commit into from
Jun 24, 2013
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions arch/arm/mach-bcm2708/dma.c
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,8 @@ bcm_dma_start(void __iomem *dma_chan_base, dma_addr_t control_block)
writel(control_block, dma_chan_base + BCM2708_DMA_ADDR);
writel(BCM2708_DMA_ACTIVE, dma_chan_base + BCM2708_DMA_CS);
}
EXPORT_SYMBOL_GPL(bcm_dma_start);


extern void bcm_dma_wait_idle(void __iomem *dma_chan_base)
{
Expand All @@ -80,8 +82,7 @@ extern void bcm_dma_wait_idle(void __iomem *dma_chan_base)
while (readl(dma_chan_base + BCM2708_DMA_CS) & BCM2708_DMA_ACTIVE)
cpu_relax();
}

EXPORT_SYMBOL_GPL(bcm_dma_start);
EXPORT_SYMBOL_GPL(bcm_dma_wait_idle);

/* Complete an ongoing DMA (assuming its results are to be ignored)
Does nothing if there is no DMA in progress.
Expand Down