Ok. I didn't make 2.4.0 in 2000. Tough. I tried, but we had some
[davej-history.git] / fs / vfat / vfatfs_syms.c
blob6f1a121e00321f8b5ccb6ae057e2e14a6292f299
1 /*
2 * linux/fs/msdos/vfatfs_syms.c
4 * Exported kernel symbols for the VFAT filesystem.
5 * These symbols are used by dmsdos.
6 */
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>
13 #include <linux/mm.h>
14 #include <linux/msdos_fs.h>
16 DECLARE_FSTYPE_DEV(vfat_fs_type, "vfat", vfat_read_super);
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);
26 static int __init init_vfat_fs(void)
28 return register_filesystem(&vfat_fs_type);
31 static void __exit exit_vfat_fs(void)
33 unregister_filesystem(&vfat_fs_type);
36 module_init(init_vfat_fs)
37 module_exit(exit_vfat_fs)