aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--fs/autofs/Makefile4
-rw-r--r--fs/autofs/init.c2
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
5obj-$(CONFIG_AUTOFS_FS) += autofs.o 5obj-$(CONFIG_AUTOFS_FS) += autofs4.o
6 6
7autofs-objs := init.o inode.o root.o symlink.o waitq.o expire.o dev-ioctl.o 7autofs4-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};
25MODULE_ALIAS_FS("autofs"); 25MODULE_ALIAS_FS("autofs");
26MODULE_ALIAS("autofs4"); 26MODULE_ALIAS("autofs");
27 27
28static int __init init_autofs_fs(void) 28static int __init init_autofs_fs(void)
29{ 29{