Commit 3cf67121 authored by Matt Porter's avatar Matt Porter Committed by Linus Torvalds

[PATCH] ppc32: export some DMA API symbols

Exports some DMA API symbols so module clients work.
Signed-off-by: default avatarMatt Porter <mporter@kernel.crashing.org>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 60a1d8b6
......@@ -254,6 +254,7 @@ __dma_alloc_coherent(size_t size, dma_addr_t *handle, int gfp)
no_page:
return NULL;
}
EXPORT_SYMBOL(__dma_alloc_coherent);
/*
* free a page as defined by the above mapping.
......@@ -317,7 +318,7 @@ void __dma_free_coherent(size_t size, void *vaddr)
__func__, vaddr);
dump_stack();
}
EXPORT_SYMBOL(dma_free_coherent);
EXPORT_SYMBOL(__dma_free_coherent);
/*
* Initialise the consistent memory allocation.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment