sh_ksyms_64.c 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /*
  2. * arch/sh/kernel/sh_ksyms_64.c
  3. *
  4. * Copyright (C) 2000, 2001 Paolo Alberelli
  5. *
  6. * This file is subject to the terms and conditions of the GNU General Public
  7. * License. See the file "COPYING" in the main directory of this archive
  8. * for more details.
  9. */
  10. #include <linux/rwsem.h>
  11. #include <linux/module.h>
  12. #include <linux/smp.h>
  13. #include <linux/user.h>
  14. #include <linux/elfcore.h>
  15. #include <linux/sched.h>
  16. #include <linux/in6.h>
  17. #include <linux/interrupt.h>
  18. #include <linux/screen_info.h>
  19. #include <asm/processor.h>
  20. #include <asm/uaccess.h>
  21. #include <asm/checksum.h>
  22. #include <asm/io.h>
  23. #include <asm/delay.h>
  24. #include <asm/irq.h>
  25. extern int dump_fpu(struct pt_regs *, elf_fpregset_t *);
  26. /* platform dependent support */
  27. EXPORT_SYMBOL(dump_fpu);
  28. EXPORT_SYMBOL(kernel_thread);
  29. /* Networking helper routines. */
  30. EXPORT_SYMBOL(csum_partial_copy_nocheck);
  31. #ifdef CONFIG_VT
  32. EXPORT_SYMBOL(screen_info);
  33. #endif
  34. EXPORT_SYMBOL(__put_user_asm_l);
  35. EXPORT_SYMBOL(__get_user_asm_l);
  36. EXPORT_SYMBOL(copy_page);
  37. EXPORT_SYMBOL(__copy_user);
  38. EXPORT_SYMBOL(empty_zero_page);
  39. EXPORT_SYMBOL(memcpy);
  40. EXPORT_SYMBOL(__udelay);
  41. EXPORT_SYMBOL(__ndelay);
  42. /* Ugh. These come in from libgcc.a at link time. */
  43. #define DECLARE_EXPORT(name) extern void name(void);EXPORT_SYMBOL(name)
  44. DECLARE_EXPORT(__sdivsi3);
  45. DECLARE_EXPORT(__muldi3);
  46. DECLARE_EXPORT(__udivsi3);