summaryrefslogtreecommitdiff
path: root/fs/filesystems.c
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-03-18 16:34:14 (GMT)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-03-18 16:34:14 (GMT)
commitc45bb8cb72136bf23d18926113bff04c8cc90813 (patch)
treeae49a32f9c2536383c50d426c2eba1c7da1f22cf /fs/filesystems.c
parenta14592896023adcab12307774c89284ce0744ce2 (diff)
parenta937536b868b8369b98967929045f1df54234323 (diff)
downloadlinux-c45bb8cb72136bf23d18926113bff04c8cc90813.tar.xz
Merge 3.9-rc3 into staging-next
This resolves the merge error due to removing the ccg staging driver, and picks up the other staging driver fixes that went into 3.9-rc3. Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'fs/filesystems.c')
-rw-r--r--fs/filesystems.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/filesystems.c b/fs/filesystems.c
index da165f6..92567d9 100644
--- a/fs/filesystems.c
+++ b/fs/filesystems.c
@@ -273,7 +273,7 @@ struct file_system_type *get_fs_type(const char *name)
int len = dot ? dot - name : strlen(name);
fs = __get_fs_type(name, len);
- if (!fs && (request_module("%.*s", len, name) == 0))
+ if (!fs && (request_module("fs-%.*s", len, name) == 0))
fs = __get_fs_type(name, len);
if (dot && fs && !(fs->fs_flags & FS_HAS_SUBTYPE)) {