sh_ksyms.c 1.5 KB

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