diff options
author | Chris Metcalf <cmetcalf@tilera.com> | 2013-02-01 21:06:06 +0100 |
---|---|---|
committer | Chris Metcalf <cmetcalf@tilera.com> | 2013-02-08 19:20:36 +0100 |
commit | 7c63e1ee0afe0e957292463cfa111ba59193ab2f (patch) | |
tree | c09b8cf9c175e2603fba83a9e11258382fd0d496 /arch/tile/lib/cacheflush.c | |
parent | drm: fix compile failure by including <linux/swiotlb.h> (diff) | |
download | linux-7c63e1ee0afe0e957292463cfa111ba59193ab2f.tar.xz linux-7c63e1ee0afe0e957292463cfa111ba59193ab2f.zip |
tile: export a handful of symbols appropriately
This was shown up by running with "allmodconfig". I used
EXPORT_SYMBOL() to match existing conventions in files that
were already exporting symbols, or that were exported that way
by other architectures, and otherwise EXPORT_SYMBOL_GPL().
Signed-off-by: Chris Metcalf <cmetcalf@tilera.com>
Diffstat (limited to 'arch/tile/lib/cacheflush.c')
-rw-r--r-- | arch/tile/lib/cacheflush.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/tile/lib/cacheflush.c b/arch/tile/lib/cacheflush.c index db4fb89e12d8..8f8ad814b139 100644 --- a/arch/tile/lib/cacheflush.c +++ b/arch/tile/lib/cacheflush.c @@ -12,6 +12,7 @@ * more details. */ +#include <linux/export.h> #include <asm/page.h> #include <asm/cacheflush.h> #include <arch/icache.h> @@ -165,3 +166,4 @@ void finv_buffer_remote(void *buffer, size_t size, int hfh) __insn_mtspr(SPR_DSTREAM_PF, old_dstream_pf); #endif } +EXPORT_SYMBOL_GPL(finv_buffer_remote); |