1 /*
2 * linux/fs/msdos/vfatfs_syms.c
3 *
4 * Exported kernel symbols for the VFAT filesystem.
5 * These symbols are used by dmsdos.
6 */
7
8 #define ASC_LINUX_VERSION(V, P, S) (((V) * 65536) + ((P) * 256) + (S))
9 #include <linux/version.h>
10 #include <linux/module.h>
11 #include <linux/init.h>
12
13 #include <linux/mm.h>
14 #include <linux/msdos_fs.h>
15
16 DECLARE_FSTYPE_DEV(vfat_fs_type, "vfat", vfat_read_super);
17
18 EXPORT_SYMBOL(vfat_create);
19 EXPORT_SYMBOL(vfat_unlink);
20 EXPORT_SYMBOL(vfat_mkdir);
21 EXPORT_SYMBOL(vfat_rmdir);
22 EXPORT_SYMBOL(vfat_rename);
23 EXPORT_SYMBOL(vfat_read_super);
24 EXPORT_SYMBOL(vfat_lookup);
25
26 static int __init init_vfat_fs(void)
27 {
28 return register_filesystem(&vfat_fs_type);
29 }
30
31 static void __exit exit_vfat_fs(void)
32 {
33 unregister_filesystem(&vfat_fs_type);
34 }
35
36 module_init(init_vfat_fs)
37 module_exit(exit_vfat_fs)
38
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more
information.