amiga_ksyms.c 911 B

123456789101112131415161718192021222324252627282930313233
  1. #include <linux/module.h>
  2. #include <linux/types.h>
  3. #include <asm/ptrace.h>
  4. #include <asm/amigahw.h>
  5. #include <asm/amigaints.h>
  6. #include <asm/amipcmcia.h>
  7. extern volatile u_short amiga_audio_min_period;
  8. extern u_short amiga_audio_period;
  9. /*
  10. * Add things here when you find the need for it.
  11. */
  12. EXPORT_SYMBOL(amiga_model);
  13. EXPORT_SYMBOL(amiga_chipset);
  14. EXPORT_SYMBOL(amiga_hw_present);
  15. EXPORT_SYMBOL(amiga_eclock);
  16. EXPORT_SYMBOL(amiga_colorclock);
  17. EXPORT_SYMBOL(amiga_chip_alloc);
  18. EXPORT_SYMBOL(amiga_chip_free);
  19. EXPORT_SYMBOL(amiga_chip_avail);
  20. EXPORT_SYMBOL(amiga_chip_size);
  21. EXPORT_SYMBOL(amiga_audio_period);
  22. EXPORT_SYMBOL(amiga_audio_min_period);
  23. #ifdef CONFIG_AMIGA_PCMCIA
  24. EXPORT_SYMBOL(pcmcia_reset);
  25. EXPORT_SYMBOL(pcmcia_copy_tuple);
  26. EXPORT_SYMBOL(pcmcia_program_voltage);
  27. EXPORT_SYMBOL(pcmcia_access_speed);
  28. EXPORT_SYMBOL(pcmcia_write_enable);
  29. EXPORT_SYMBOL(pcmcia_write_disable);
  30. #endif