aboutsummaryrefslogtreecommitdiffstats
path: root/arch/hexagon
diff options
context:
space:
mode:
Diffstat (limited to 'arch/hexagon')
-rw-r--r--arch/hexagon/kernel/hexagon_ksyms.c24
1 files changed, 20 insertions, 4 deletions
diff --git a/arch/hexagon/kernel/hexagon_ksyms.c b/arch/hexagon/kernel/hexagon_ksyms.c
index 32b1379d6877..c041d8ecb1e2 100644
--- a/arch/hexagon/kernel/hexagon_ksyms.c
+++ b/arch/hexagon/kernel/hexagon_ksyms.c
@@ -18,23 +18,39 @@
18 * 02110-1301, USA. 18 * 02110-1301, USA.
19 */ 19 */
20 20
21#include <linux/dma-mapping.h>
21#include <asm/hexagon_vm.h> 22#include <asm/hexagon_vm.h>
23#include <asm/io.h>
22#include <asm/uaccess.h> 24#include <asm/uaccess.h>
23 25
26/* Additional functions */
27EXPORT_SYMBOL(__clear_user_hexagon);
24EXPORT_SYMBOL(__copy_from_user_hexagon); 28EXPORT_SYMBOL(__copy_from_user_hexagon);
25EXPORT_SYMBOL(__copy_to_user_hexagon); 29EXPORT_SYMBOL(__copy_to_user_hexagon);
30EXPORT_SYMBOL(__iounmap);
31EXPORT_SYMBOL(__strnlen_user);
26EXPORT_SYMBOL(__vmgetie); 32EXPORT_SYMBOL(__vmgetie);
27EXPORT_SYMBOL(__vmsetie); 33EXPORT_SYMBOL(__vmsetie);
34EXPORT_SYMBOL(__vmyield);
35EXPORT_SYMBOL(empty_zero_page);
36EXPORT_SYMBOL(ioremap_nocache);
28EXPORT_SYMBOL(memcpy); 37EXPORT_SYMBOL(memcpy);
29EXPORT_SYMBOL(memset); 38EXPORT_SYMBOL(memset);
30 39
40/* Additional variables */
41EXPORT_SYMBOL(__phys_offset);
42EXPORT_SYMBOL(_dflt_cache_att);
43EXPORT_SYMBOL(bad_dma_address);
44
31#define DECLARE_EXPORT(name) \ 45#define DECLARE_EXPORT(name) \
32 extern void name(void); EXPORT_SYMBOL(name) 46 extern void name(void); EXPORT_SYMBOL(name)
33 47
34/* Symbols found in libgcc that assorted kernel modules need */ 48/* Symbols found in libgcc that assorted kernel modules need */
35DECLARE_EXPORT(__hexagon_memcpy_likely_aligned_min32bytes_mult8bytes); 49DECLARE_EXPORT(__hexagon_memcpy_likely_aligned_min32bytes_mult8bytes);
36 50
37DECLARE_EXPORT(__hexagon_divsi3); 51/* Additional functions */
38DECLARE_EXPORT(__hexagon_modsi3); 52DECLARE_EXPORT(__divsi3);
39DECLARE_EXPORT(__hexagon_udivsi3); 53DECLARE_EXPORT(__modsi3);
40DECLARE_EXPORT(__hexagon_umodsi3); 54DECLARE_EXPORT(__udivsi3);
55DECLARE_EXPORT(__umodsi3);
56DECLARE_EXPORT(csum_tcpudp_magic);