/* * Export MIPS-specific functions needed for loadable modules. * * This file is subject to the terms and conditions of the GNU General Public * License. See the file "COPYING" in the main directory of this archive * for more details. * * Copyright (C) 1996, 1997 by Ralf Baechle * * $Id: mips_ksyms.c,v 1.4 1997/08/11 04:17:18 ralf Exp $ */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include EXPORT_SYMBOL(EISA_bus); /* * String functions */ EXPORT_SYMBOL_NOVERS(bcopy); EXPORT_SYMBOL_NOVERS(memcmp); EXPORT_SYMBOL_NOVERS(memset); EXPORT_SYMBOL_NOVERS(memcpy); EXPORT_SYMBOL_NOVERS(memmove); EXPORT_SYMBOL_NOVERS(strcat); EXPORT_SYMBOL_NOVERS(strchr); EXPORT_SYMBOL_NOVERS(strlen); EXPORT_SYMBOL_NOVERS(strncat); EXPORT_SYMBOL_NOVERS(strnlen); EXPORT_SYMBOL_NOVERS(strrchr); EXPORT_SYMBOL_NOVERS(strtok); EXPORT_SYMBOL(clear_page); EXPORT_SYMBOL(__mips_bh_counter); EXPORT_SYMBOL(local_irq_count); /* * Userspace access stuff. */ EXPORT_SYMBOL(__copy_user); EXPORT_SYMBOL(active_ds); /* Networking helper routines. */ EXPORT_SYMBOL(csum_partial_copy); /* * Functions to control caches. */ EXPORT_SYMBOL(flush_page_to_ram); EXPORT_SYMBOL(fd_cacheflush); EXPORT_SYMBOL(flush_cache_all); /* * Base address of ports for Intel style I/O. */ EXPORT_SYMBOL(mips_io_port_base); /* * Architecture specific stuff. */ #ifdef CONFIG_MIPS_JAZZ EXPORT_SYMBOL(vdma_alloc); EXPORT_SYMBOL(vdma_free); EXPORT_SYMBOL(vdma_log2phys); #endif #ifdef CONFIG_SGI EXPORT_SYMBOL(hpc3c0); #endif /* * Kernel hacking ... */ #include #include int register_fpe(void (*handler)(struct pt_regs *regs, unsigned int fcr31)); int unregister_fpe(void (*handler)(struct pt_regs *regs, unsigned int fcr31)); #ifdef CONFIG_MIPS_FPE_MODULE EXPORT_SYMBOL(force_sig); EXPORT_SYMBOL(__compute_return_epc); EXPORT_SYMBOL(register_fpe); EXPORT_SYMBOL(unregister_fpe); #endif