mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 17:51:43 +00:00
1da177e4c3
Initial git repository build. I'm not bothering with the full history, even though we have it. We can create a separate "historical" git archive of that later if we want to, and in the meantime it's about 3.2GB when imported into git - space that would just make the early git days unnecessarily complicated, when we don't have a lot of good infrastructure for it. Let it rip!
37 lines
1000 B
C
37 lines
1000 B
C
#include <linux/config.h>
|
|
#include <linux/module.h>
|
|
#include <linux/types.h>
|
|
#include <asm/ptrace.h>
|
|
#include <asm/amigahw.h>
|
|
#include <asm/amigaints.h>
|
|
#include <asm/amipcmcia.h>
|
|
|
|
extern volatile u_short amiga_audio_min_period;
|
|
extern u_short amiga_audio_period;
|
|
|
|
/*
|
|
* Add things here when you find the need for it.
|
|
*/
|
|
EXPORT_SYMBOL(amiga_model);
|
|
EXPORT_SYMBOL(amiga_chipset);
|
|
EXPORT_SYMBOL(amiga_hw_present);
|
|
EXPORT_SYMBOL(amiga_eclock);
|
|
EXPORT_SYMBOL(amiga_colorclock);
|
|
EXPORT_SYMBOL(amiga_chip_alloc);
|
|
EXPORT_SYMBOL(amiga_chip_free);
|
|
EXPORT_SYMBOL(amiga_chip_avail);
|
|
EXPORT_SYMBOL(amiga_chip_size);
|
|
EXPORT_SYMBOL(amiga_audio_period);
|
|
EXPORT_SYMBOL(amiga_audio_min_period);
|
|
EXPORT_SYMBOL(amiga_do_irq);
|
|
EXPORT_SYMBOL(amiga_do_irq_list);
|
|
|
|
#ifdef CONFIG_AMIGA_PCMCIA
|
|
EXPORT_SYMBOL(pcmcia_reset);
|
|
EXPORT_SYMBOL(pcmcia_copy_tuple);
|
|
EXPORT_SYMBOL(pcmcia_program_voltage);
|
|
EXPORT_SYMBOL(pcmcia_access_speed);
|
|
EXPORT_SYMBOL(pcmcia_write_enable);
|
|
EXPORT_SYMBOL(pcmcia_write_disable);
|
|
#endif
|