Commit 41c556a8cb22dcb4751fed3fb3d2ccc37f945646

Authored by Attila Kinali
Committed by Vinod Koul
1 parent ce3a1ab742

dma: mxs-dma: Export missing symbols from mxs-dma.c

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>

Showing 1 changed file with 2 additions and 0 deletions Side-by-side Diff

drivers/dma/mxs-dma.c
... ... @@ -200,6 +200,7 @@
200 200  
201 201 return dma_is_apbh(mxs_dma);
202 202 }
  203 +EXPORT_SYMBOL_GPL(mxs_dma_is_apbh);
203 204  
204 205 int mxs_dma_is_apbx(struct dma_chan *chan)
205 206 {
... ... @@ -208,6 +209,7 @@
208 209  
209 210 return !dma_is_apbh(mxs_dma);
210 211 }
  212 +EXPORT_SYMBOL_GPL(mxs_dma_is_apbx);
211 213  
212 214 static void mxs_dma_reset_chan(struct mxs_dma_chan *mxs_chan)
213 215 {