|
@@ -1,37 +1,11 @@
|
|
#include <linux/module.h>
|
|
#include <linux/module.h>
|
|
-#include <linux/smp.h>
|
|
|
|
-#include <linux/user.h>
|
|
|
|
-#include <linux/elfcore.h>
|
|
|
|
-#include <linux/sched.h>
|
|
|
|
-#include <linux/in6.h>
|
|
|
|
-#include <linux/interrupt.h>
|
|
|
|
-#include <linux/vmalloc.h>
|
|
|
|
-#include <linux/pci.h>
|
|
|
|
-#include <linux/irq.h>
|
|
|
|
-#include <asm/sections.h>
|
|
|
|
-#include <asm/processor.h>
|
|
|
|
-#include <asm/uaccess.h>
|
|
|
|
|
|
+#include <linux/string.h>
|
|
|
|
+#include <linux/uaccess.h>
|
|
|
|
+#include <linux/delay.h>
|
|
|
|
+#include <linux/mm.h>
|
|
#include <asm/checksum.h>
|
|
#include <asm/checksum.h>
|
|
-#include <asm/io.h>
|
|
|
|
-#include <asm/delay.h>
|
|
|
|
-#include <asm/tlbflush.h>
|
|
|
|
-#include <asm/cacheflush.h>
|
|
|
|
-#include <asm/ftrace.h>
|
|
|
|
-
|
|
|
|
-extern int dump_fpu(struct pt_regs *, elf_fpregset_t *);
|
|
|
|
-
|
|
|
|
-/* platform dependent support */
|
|
|
|
-EXPORT_SYMBOL(dump_fpu);
|
|
|
|
-EXPORT_SYMBOL(kernel_thread);
|
|
|
|
-EXPORT_SYMBOL(strlen);
|
|
|
|
-
|
|
|
|
-/* PCI exports */
|
|
|
|
-#ifdef CONFIG_PCI
|
|
|
|
-EXPORT_SYMBOL(pci_alloc_consistent);
|
|
|
|
-EXPORT_SYMBOL(pci_free_consistent);
|
|
|
|
-#endif
|
|
|
|
|
|
+#include <asm/sections.h>
|
|
|
|
|
|
-/* mem exports */
|
|
|
|
EXPORT_SYMBOL(memchr);
|
|
EXPORT_SYMBOL(memchr);
|
|
EXPORT_SYMBOL(memcpy);
|
|
EXPORT_SYMBOL(memcpy);
|
|
EXPORT_SYMBOL(memset);
|
|
EXPORT_SYMBOL(memset);
|
|
@@ -40,6 +14,13 @@ EXPORT_SYMBOL(__copy_user);
|
|
EXPORT_SYMBOL(__udelay);
|
|
EXPORT_SYMBOL(__udelay);
|
|
EXPORT_SYMBOL(__ndelay);
|
|
EXPORT_SYMBOL(__ndelay);
|
|
EXPORT_SYMBOL(__const_udelay);
|
|
EXPORT_SYMBOL(__const_udelay);
|
|
|
|
+EXPORT_SYMBOL(strlen);
|
|
|
|
+EXPORT_SYMBOL(csum_partial);
|
|
|
|
+EXPORT_SYMBOL(csum_partial_copy_generic);
|
|
|
|
+EXPORT_SYMBOL(copy_page);
|
|
|
|
+EXPORT_SYMBOL(__clear_user);
|
|
|
|
+EXPORT_SYMBOL(_ebss);
|
|
|
|
+EXPORT_SYMBOL(empty_zero_page);
|
|
|
|
|
|
#define DECLARE_EXPORT(name) \
|
|
#define DECLARE_EXPORT(name) \
|
|
extern void name(void);EXPORT_SYMBOL(name)
|
|
extern void name(void);EXPORT_SYMBOL(name)
|
|
@@ -107,16 +88,6 @@ DECLARE_EXPORT(__sdivsi3_i4);
|
|
DECLARE_EXPORT(__udivsi3_i4);
|
|
DECLARE_EXPORT(__udivsi3_i4);
|
|
DECLARE_EXPORT(__sdivsi3_i4i);
|
|
DECLARE_EXPORT(__sdivsi3_i4i);
|
|
DECLARE_EXPORT(__udivsi3_i4i);
|
|
DECLARE_EXPORT(__udivsi3_i4i);
|
|
-
|
|
|
|
#ifdef CONFIG_MCOUNT
|
|
#ifdef CONFIG_MCOUNT
|
|
DECLARE_EXPORT(mcount);
|
|
DECLARE_EXPORT(mcount);
|
|
#endif
|
|
#endif
|
|
-EXPORT_SYMBOL(csum_partial);
|
|
|
|
-EXPORT_SYMBOL(csum_partial_copy_generic);
|
|
|
|
-#ifdef CONFIG_IPV6
|
|
|
|
-EXPORT_SYMBOL(csum_ipv6_magic);
|
|
|
|
-#endif
|
|
|
|
-EXPORT_SYMBOL(copy_page);
|
|
|
|
-EXPORT_SYMBOL(__clear_user);
|
|
|
|
-EXPORT_SYMBOL(_ebss);
|
|
|
|
-EXPORT_SYMBOL(empty_zero_page);
|
|
|