ppc_ksyms.c 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. /*
  2. * c 2001 PPC 64 Team, IBM Corp
  3. *
  4. * This program is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU General Public License
  6. * as published by the Free Software Foundation; either version
  7. * 2 of the License, or (at your option) any later version.
  8. */
  9. #include <linux/config.h>
  10. #include <linux/module.h>
  11. #include <linux/string.h>
  12. #include <linux/console.h>
  13. #include <net/checksum.h>
  14. #include <asm/processor.h>
  15. #include <asm/uaccess.h>
  16. #include <asm/io.h>
  17. #include <asm/system.h>
  18. #include <asm/hw_irq.h>
  19. #include <asm/abs_addr.h>
  20. #include <asm/cacheflush.h>
  21. EXPORT_SYMBOL(strcpy);
  22. EXPORT_SYMBOL(strncpy);
  23. EXPORT_SYMBOL(strcat);
  24. EXPORT_SYMBOL(strncat);
  25. EXPORT_SYMBOL(strchr);
  26. EXPORT_SYMBOL(strrchr);
  27. EXPORT_SYMBOL(strpbrk);
  28. EXPORT_SYMBOL(strstr);
  29. EXPORT_SYMBOL(strlen);
  30. EXPORT_SYMBOL(strnlen);
  31. EXPORT_SYMBOL(strcmp);
  32. EXPORT_SYMBOL(strncmp);
  33. EXPORT_SYMBOL(csum_partial);
  34. EXPORT_SYMBOL(csum_partial_copy_generic);
  35. EXPORT_SYMBOL(ip_fast_csum);
  36. EXPORT_SYMBOL(csum_tcpudp_magic);
  37. EXPORT_SYMBOL(__copy_tofrom_user);
  38. EXPORT_SYMBOL(__clear_user);
  39. EXPORT_SYMBOL(__strncpy_from_user);
  40. EXPORT_SYMBOL(__strnlen_user);
  41. EXPORT_SYMBOL(reloc_offset);
  42. EXPORT_SYMBOL(_insb);
  43. EXPORT_SYMBOL(_outsb);
  44. EXPORT_SYMBOL(_insw);
  45. EXPORT_SYMBOL(_outsw);
  46. EXPORT_SYMBOL(_insl);
  47. EXPORT_SYMBOL(_outsl);
  48. EXPORT_SYMBOL(_insw_ns);
  49. EXPORT_SYMBOL(_outsw_ns);
  50. EXPORT_SYMBOL(_insl_ns);
  51. EXPORT_SYMBOL(_outsl_ns);
  52. EXPORT_SYMBOL(kernel_thread);
  53. EXPORT_SYMBOL(giveup_fpu);
  54. #ifdef CONFIG_ALTIVEC
  55. EXPORT_SYMBOL(giveup_altivec);
  56. #endif
  57. EXPORT_SYMBOL(__flush_icache_range);
  58. EXPORT_SYMBOL(flush_dcache_range);
  59. EXPORT_SYMBOL(memcpy);
  60. EXPORT_SYMBOL(memset);
  61. EXPORT_SYMBOL(memmove);
  62. EXPORT_SYMBOL(memscan);
  63. EXPORT_SYMBOL(memcmp);
  64. EXPORT_SYMBOL(memchr);
  65. EXPORT_SYMBOL(timer_interrupt);
  66. EXPORT_SYMBOL(console_drivers);