dma: mxs-dma: Export missing symbols from mxs-dma.c
authorAttila Kinali <attila@kinali.ch>
Fri, 6 Jul 2012 12:53:20 +0000 (14:53 +0200)
committerVinod Koul <vinod.koul@linux.intel.com>
Mon, 16 Jul 2012 06:29:22 +0000 (11:59 +0530)
mxs-dma.c provides two functions mxs_dma_is_apbh and mxs_dma_is_apbx
which are used at least in mxs-mmc.c. Building mxs-mmc as module
fails due to those two symbols not being exported.

Signed-off-by: Attila Kinali <attila@kinali.ch>
Acked-by: Shawn Guo <shawn.guo@linaro.org>
Signed-off-by: Vinod Koul <vinod.koul@linux.intel.com>
drivers/dma/mxs-dma.c

index 90b980d014aaa37ff166456941f10fbe42151c17..7f41b25805fa071edfa9d74946c630c2a7528733 100644 (file)
@@ -200,6 +200,7 @@ int mxs_dma_is_apbh(struct dma_chan *chan)
 
        return dma_is_apbh(mxs_dma);
 }
+EXPORT_SYMBOL_GPL(mxs_dma_is_apbh);
 
 int mxs_dma_is_apbx(struct dma_chan *chan)
 {
@@ -208,6 +209,7 @@ int mxs_dma_is_apbx(struct dma_chan *chan)
 
        return !dma_is_apbh(mxs_dma);
 }
+EXPORT_SYMBOL_GPL(mxs_dma_is_apbx);
 
 static void mxs_dma_reset_chan(struct mxs_dma_chan *mxs_chan)
 {
This page took 0.025596 seconds and 5 git commands to generate.