ksyms.c 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /*
  2. * linux/arch/unicore32/kernel/ksyms.c
  3. *
  4. * Code specific to PKUnity SoC and UniCore ISA
  5. *
  6. * Copyright (C) 2001-2010 GUAN Xue-tao
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License version 2 as
  10. * published by the Free Software Foundation.
  11. */
  12. #include <linux/module.h>
  13. #include <linux/sched.h>
  14. #include <linux/string.h>
  15. #include <linux/cryptohash.h>
  16. #include <linux/delay.h>
  17. #include <linux/in6.h>
  18. #include <linux/syscalls.h>
  19. #include <linux/uaccess.h>
  20. #include <linux/io.h>
  21. #include <asm/checksum.h>
  22. #include "ksyms.h"
  23. EXPORT_SYMBOL(find_first_bit);
  24. EXPORT_SYMBOL(find_first_zero_bit);
  25. EXPORT_SYMBOL(find_next_zero_bit);
  26. EXPORT_SYMBOL(find_next_bit);
  27. /* platform dependent support */
  28. EXPORT_SYMBOL(__udelay);
  29. EXPORT_SYMBOL(__const_udelay);
  30. /* string / mem functions */
  31. EXPORT_SYMBOL(strchr);
  32. EXPORT_SYMBOL(strrchr);
  33. EXPORT_SYMBOL(memset);
  34. EXPORT_SYMBOL(memcpy);
  35. EXPORT_SYMBOL(memmove);
  36. EXPORT_SYMBOL(memchr);
  37. /* user mem (segment) */
  38. EXPORT_SYMBOL(__strnlen_user);
  39. EXPORT_SYMBOL(__strncpy_from_user);
  40. EXPORT_SYMBOL(copy_page);
  41. EXPORT_SYMBOL(__copy_from_user);
  42. EXPORT_SYMBOL(__copy_to_user);
  43. EXPORT_SYMBOL(__clear_user);
  44. EXPORT_SYMBOL(__ashldi3);
  45. EXPORT_SYMBOL(__ashrdi3);
  46. EXPORT_SYMBOL(__divsi3);
  47. EXPORT_SYMBOL(__lshrdi3);
  48. EXPORT_SYMBOL(__modsi3);
  49. EXPORT_SYMBOL(__ucmpdi2);
  50. EXPORT_SYMBOL(__udivsi3);
  51. EXPORT_SYMBOL(__umodsi3);