xtensa_ksyms.c 693 B

123456789101112131415161718192021222324252627282930
  1. /*
  2. * arch/xtensa/kernel/xtensa_ksyms.c
  3. *
  4. * Export Xtensa-specific functions for loadable modules.
  5. *
  6. * This file is subject to the terms and conditions of the GNU General Public
  7. * License. See the file "COPYING" in the main directory of this archive
  8. * for more details.
  9. *
  10. * Copyright (C) 2001 - 2005 Tensilica Inc.
  11. *
  12. * Joe Taylor <joe@tensilica.com>
  13. */
  14. #include <linux/module.h>
  15. #include <asm/pgtable.h>
  16. EXPORT_SYMBOL(empty_zero_page);
  17. unsigned int __sync_fetch_and_and_4(volatile void *p, unsigned int v)
  18. {
  19. BUG();
  20. }
  21. EXPORT_SYMBOL(__sync_fetch_and_and_4);
  22. unsigned int __sync_fetch_and_or_4(volatile void *p, unsigned int v)
  23. {
  24. BUG();
  25. }
  26. EXPORT_SYMBOL(__sync_fetch_and_or_4);