nios2_ksyms.c 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /*
  2. * Copyright (C) 2004 Microtronix Datacom Ltd
  3. *
  4. * This file is subject to the terms and conditions of the GNU General
  5. * Public License. See the file COPYING in the main directory of this
  6. * archive for more details.
  7. */
  8. #include <linux/export.h>
  9. #include <linux/string.h>
  10. #include <linux/pgtable.h>
  11. #include <asm/cacheflush.h>
  12. /* string functions */
  13. EXPORT_SYMBOL(memcpy);
  14. EXPORT_SYMBOL(memset);
  15. EXPORT_SYMBOL(memmove);
  16. /* memory management */
  17. EXPORT_SYMBOL(empty_zero_page);
  18. EXPORT_SYMBOL(flush_icache_range);
  19. /*
  20. * libgcc functions - functions that are used internally by the
  21. * compiler... (prototypes are not correct though, but that
  22. * doesn't really matter since they're not versioned).
  23. */
  24. #define DECLARE_EXPORT(name) extern void name(void); EXPORT_SYMBOL(name)
  25. DECLARE_EXPORT(__gcc_bcmp);
  26. DECLARE_EXPORT(__divsi3);
  27. DECLARE_EXPORT(__moddi3);
  28. DECLARE_EXPORT(__modsi3);
  29. DECLARE_EXPORT(__udivmoddi4);
  30. DECLARE_EXPORT(__udivsi3);
  31. DECLARE_EXPORT(__umoddi3);
  32. DECLARE_EXPORT(__umodsi3);
  33. DECLARE_EXPORT(__muldi3);
  34. DECLARE_EXPORT(__ucmpdi2);
  35. DECLARE_EXPORT(__lshrdi3);
  36. DECLARE_EXPORT(__ashldi3);
  37. DECLARE_EXPORT(__ashrdi3);