2008-05-20 01:53:02 +02:00
|
|
|
/*
|
2005-04-17 00:20:36 +02:00
|
|
|
* arch/sparc/kernel/ksyms.c: Sparc specific ksyms support.
|
|
|
|
*
|
|
|
|
* Copyright (C) 1996 David S. Miller (davem@caip.rutgers.edu)
|
|
|
|
* Copyright (C) 1996 Eddie C. Dost (ecd@skynet.be)
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/init.h>
|
|
|
|
|
|
|
|
#include <asm/pgtable.h>
|
|
|
|
#include <asm/uaccess.h>
|
2009-01-09 01:58:05 +01:00
|
|
|
#include <asm/delay.h>
|
|
|
|
#include <asm/head.h>
|
2005-04-17 00:20:36 +02:00
|
|
|
#include <asm/dma.h>
|
|
|
|
|
|
|
|
struct poll {
|
|
|
|
int fd;
|
|
|
|
short events;
|
|
|
|
short revents;
|
|
|
|
};
|
|
|
|
|
2009-01-09 01:58:05 +01:00
|
|
|
/* from entry.S */
|
2005-04-17 00:20:36 +02:00
|
|
|
EXPORT_SYMBOL(__udelay);
|
|
|
|
EXPORT_SYMBOL(__ndelay);
|
|
|
|
|
2009-01-09 01:58:05 +01:00
|
|
|
/* from head_32.S */
|
|
|
|
EXPORT_SYMBOL(__ret_efault);
|
|
|
|
EXPORT_SYMBOL(empty_zero_page);
|
|
|
|
|
|
|
|
/* Defined using magic */
|
2005-04-17 00:20:36 +02:00
|
|
|
#ifndef CONFIG_SMP
|
|
|
|
EXPORT_SYMBOL(BTFIXUP_CALL(___xchg32));
|
|
|
|
#else
|
|
|
|
EXPORT_SYMBOL(BTFIXUP_CALL(__hard_smp_processor_id));
|
|
|
|
#endif
|
|
|
|
EXPORT_SYMBOL(BTFIXUP_CALL(mmu_unlockarea));
|
|
|
|
EXPORT_SYMBOL(BTFIXUP_CALL(mmu_lockarea));
|
|
|
|
EXPORT_SYMBOL(BTFIXUP_CALL(mmu_get_scsi_sgl));
|
|
|
|
EXPORT_SYMBOL(BTFIXUP_CALL(mmu_get_scsi_one));
|
|
|
|
EXPORT_SYMBOL(BTFIXUP_CALL(mmu_release_scsi_sgl));
|
|
|
|
EXPORT_SYMBOL(BTFIXUP_CALL(mmu_release_scsi_one));
|
2007-07-22 09:38:24 +02:00
|
|
|
EXPORT_SYMBOL(BTFIXUP_CALL(pgprot_noncached));
|
|
|
|
|
2009-01-09 01:58:05 +01:00
|
|
|
/* Exporting a symbol from /init/main.c */
|
2005-04-17 00:20:36 +02:00
|
|
|
EXPORT_SYMBOL(saved_command_line);
|