OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [tags/] [LINUX_2_4_26_OR32/] [linux/] [linux-2.4/] [fs/] [vfat/] [vfatfs_syms.c] - Rev 1765

Compare with Previous | Blame | View Log

/*
 * linux/fs/msdos/vfatfs_syms.c
 *
 * Exported kernel symbols for the VFAT filesystem.
 * These symbols are used by dmsdos.
 */
 
#include <linux/module.h>
#include <linux/init.h>
 
#include <linux/mm.h>
#include <linux/msdos_fs.h>
 
DECLARE_FSTYPE_DEV(vfat_fs_type, "vfat", vfat_read_super);
 
EXPORT_SYMBOL(vfat_create);
EXPORT_SYMBOL(vfat_unlink);
EXPORT_SYMBOL(vfat_mkdir);
EXPORT_SYMBOL(vfat_rmdir);
EXPORT_SYMBOL(vfat_rename);
EXPORT_SYMBOL(vfat_read_super);
EXPORT_SYMBOL(vfat_lookup);
 
static int __init init_vfat_fs(void)
{
	return register_filesystem(&vfat_fs_type);
}
 
static void __exit exit_vfat_fs(void)
{
	unregister_filesystem(&vfat_fs_type);
}
 
module_init(init_vfat_fs)
module_exit(exit_vfat_fs)
MODULE_LICENSE("GPL");
 

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.