1 /* -*- 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", autofs4_read_super, 0);
18
19 static int __init init_autofs4_fs(void)
20 {
21 return register_filesystem(&autofs_fs_type);
22 }
23
24 static void __exit exit_autofs4_fs(void)
25 {
26 unregister_filesystem(&autofs_fs_type);
27 }
28
29 module_init(init_autofs4_fs)
30 module_exit(exit_autofs4_fs)
31
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more
information.