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