diff options
Diffstat (limited to 'fs/befs/linuxvfs.c')
-rw-r--r-- | fs/befs/linuxvfs.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/fs/befs/linuxvfs.c b/fs/befs/linuxvfs.c index 68ebd10f345d..6ed07a5f10c6 100644 --- a/fs/befs/linuxvfs.c +++ b/fs/befs/linuxvfs.c | |||
@@ -899,11 +899,12 @@ befs_statfs(struct super_block *sb, struct kstatfs *buf) | |||
899 | return 0; | 899 | return 0; |
900 | } | 900 | } |
901 | 901 | ||
902 | static struct super_block * | 902 | static int |
903 | befs_get_sb(struct file_system_type *fs_type, int flags, const char *dev_name, | 903 | befs_get_sb(struct file_system_type *fs_type, int flags, const char *dev_name, |
904 | void *data) | 904 | void *data, struct vfsmount *mnt) |
905 | { | 905 | { |
906 | return get_sb_bdev(fs_type, flags, dev_name, data, befs_fill_super); | 906 | return get_sb_bdev(fs_type, flags, dev_name, data, befs_fill_super, |
907 | mnt); | ||
907 | } | 908 | } |
908 | 909 | ||
909 | static struct file_system_type befs_fs_type = { | 910 | static struct file_system_type befs_fs_type = { |