diff options
-rw-r--r-- | fs/autofs/Makefile | 4 | ||||
-rw-r--r-- | fs/autofs/init.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/fs/autofs/Makefile b/fs/autofs/Makefile index 43fedde15c26..1f85d35ec8b7 100644 --- a/fs/autofs/Makefile +++ b/fs/autofs/Makefile | |||
@@ -2,6 +2,6 @@ | |||
2 | # Makefile for the linux autofs-filesystem routines. | 2 | # Makefile for the linux autofs-filesystem routines. |
3 | # | 3 | # |
4 | 4 | ||
5 | obj-$(CONFIG_AUTOFS_FS) += autofs.o | 5 | obj-$(CONFIG_AUTOFS_FS) += autofs4.o |
6 | 6 | ||
7 | autofs-objs := init.o inode.o root.o symlink.o waitq.o expire.o dev-ioctl.o | 7 | autofs4-objs := init.o inode.o root.o symlink.o waitq.o expire.o dev-ioctl.o |
diff --git a/fs/autofs/init.c b/fs/autofs/init.c index cc9447e1903f..79ae07d9592f 100644 --- a/fs/autofs/init.c +++ b/fs/autofs/init.c | |||
@@ -23,7 +23,7 @@ static struct file_system_type autofs_fs_type = { | |||
23 | .kill_sb = autofs_kill_sb, | 23 | .kill_sb = autofs_kill_sb, |
24 | }; | 24 | }; |
25 | MODULE_ALIAS_FS("autofs"); | 25 | MODULE_ALIAS_FS("autofs"); |
26 | MODULE_ALIAS("autofs4"); | 26 | MODULE_ALIAS("autofs"); |
27 | 27 | ||
28 | static int __init init_autofs_fs(void) | 28 | static int __init init_autofs_fs(void) |
29 | { | 29 | { |