1 /* -*- linux-c -*- --------------------------------------------------------- *
2 *
3 * linux/fs/autofs/init.c
4 *
5 * Copyright 1997-1998 Transmeta Corporation -- All Rights Reserved
6 *
7 * This file is part of the Linux kernel and is made available under
8 * the terms of the GNU General Public License, version 2, or at your
9 * option, any later version, incorporated herein by reference.
10 *
11 * ------------------------------------------------------------------------- */
12
13 #include <linux/module.h>
14 #include <linux/init.h>
15 #include "autofs_i.h"
16
17 static DECLARE_FSTYPE(autofs_fs_type, "autofs", autofs_read_super, 0);
18
init_autofs_fs(void)19 static int __init init_autofs_fs(void)
20 {
21 return register_filesystem(&autofs_fs_type);
22 }
23
exit_autofs_fs(void)24 static void __exit exit_autofs_fs(void)
25 {
26 unregister_filesystem(&autofs_fs_type);
27 }
28
29 module_init(init_autofs_fs);
30 module_exit(exit_autofs_fs);
31
32 #ifdef DEBUG
autofs_say(const char * name,int len)33 void autofs_say(const char *name, int len)
34 {
35 printk("(%d: ", len);
36 while ( len-- )
37 printk("%c", *name++);
38 printk(")\n");
39 }
40 #endif
41 MODULE_LICENSE("GPL");
42