diff options
author | Julia Lawall <Julia.Lawall@lip6.fr> | 2012-01-24 08:31:36 -0500 |
---|---|---|
committer | Richard Kuo <rkuo@codeaurora.org> | 2012-05-22 19:40:45 -0400 |
commit | 222c547ee7155045dc20c26d39191b0e9b49f6a8 (patch) | |
tree | bcd13b3461b45a8585255021fea536c4e00ca00e /arch/hexagon | |
parent | bfd46276fdf4e936259193a520d6bc1926800fb4 (diff) |
arch/hexagon/kernel/dma.c: make function static
This function is only used in the same file, and the other similar
functions in this file are also static.
Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>
[rkuo@codeaurora.org: adjusted patch to apply to latest]
Signed-off-by: Richard Kuo <rkuo@codeaurora.org>
Diffstat (limited to 'arch/hexagon')
-rw-r--r-- | arch/hexagon/kernel/dma.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/hexagon/kernel/dma.c b/arch/hexagon/kernel/dma.c index 0f2367cc5493..2b48751aa5f7 100644 --- a/arch/hexagon/kernel/dma.c +++ b/arch/hexagon/kernel/dma.c | |||
@@ -54,7 +54,7 @@ static struct gen_pool *coherent_pool; | |||
54 | 54 | ||
55 | /* Allocates from a pool of uncached memory that was reserved at boot time */ | 55 | /* Allocates from a pool of uncached memory that was reserved at boot time */ |
56 | 56 | ||
57 | void *hexagon_dma_alloc_coherent(struct device *dev, size_t size, | 57 | static void *hexagon_dma_alloc_coherent(struct device *dev, size_t size, |
58 | dma_addr_t *dma_addr, gfp_t flag, | 58 | dma_addr_t *dma_addr, gfp_t flag, |
59 | struct dma_attrs *attrs) | 59 | struct dma_attrs *attrs) |
60 | { | 60 | { |