microblaze_ksyms.c 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. /*
  2. * Copyright (C) 2008-2009 Michal Simek <monstr@monstr.eu>
  3. * Copyright (C) 2008-2009 PetaLogix
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2 as
  7. * published by the Free Software Foundation.
  8. */
  9. #include <linux/module.h>
  10. #include <linux/string.h>
  11. #include <linux/cryptohash.h>
  12. #include <linux/delay.h>
  13. #include <linux/in6.h>
  14. #include <linux/syscalls.h>
  15. #include <asm/checksum.h>
  16. #include <linux/io.h>
  17. #include <asm/page.h>
  18. #include <asm/system.h>
  19. #include <linux/uaccess.h>
  20. /*
  21. * libgcc functions - functions that are used internally by the
  22. * compiler... (prototypes are not correct though, but that
  23. * doesn't really matter since they're not versioned).
  24. */
  25. extern void __ashldi3(void);
  26. EXPORT_SYMBOL(__ashldi3);
  27. extern void __ashrdi3(void);
  28. EXPORT_SYMBOL(__ashrdi3);
  29. extern void __divsi3(void);
  30. EXPORT_SYMBOL(__divsi3);
  31. extern void __lshrdi3(void);
  32. EXPORT_SYMBOL(__lshrdi3);
  33. extern void __modsi3(void);
  34. EXPORT_SYMBOL(__modsi3);
  35. extern void __mulsi3(void);
  36. EXPORT_SYMBOL(__mulsi3);
  37. extern void __muldi3(void);
  38. EXPORT_SYMBOL(__muldi3);
  39. extern void __ucmpdi2(void);
  40. EXPORT_SYMBOL(__ucmpdi2);
  41. extern void __udivsi3(void);
  42. EXPORT_SYMBOL(__udivsi3);
  43. extern void __umodsi3(void);
  44. EXPORT_SYMBOL(__umodsi3);
  45. extern char *_ebss;
  46. EXPORT_SYMBOL_GPL(_ebss);