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
9extern volatile u_short amiga_audio_min_period;
10extern u_short amiga_audio_period;
11
12/*
13 * Add things here when you find the need for it.
14 */
15EXPORT_SYMBOL(amiga_model);
16EXPORT_SYMBOL(amiga_chipset);
17EXPORT_SYMBOL(amiga_hw_present);
18EXPORT_SYMBOL(amiga_eclock);
19EXPORT_SYMBOL(amiga_colorclock);
20EXPORT_SYMBOL(amiga_chip_alloc);
21EXPORT_SYMBOL(amiga_chip_free);
22EXPORT_SYMBOL(amiga_chip_avail);
23EXPORT_SYMBOL(amiga_chip_size);
24EXPORT_SYMBOL(amiga_audio_period);
25EXPORT_SYMBOL(amiga_audio_min_period);
26EXPORT_SYMBOL(amiga_do_irq);
27EXPORT_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