diff options
Diffstat (limited to 'fs/affs')
-rw-r--r-- | fs/affs/super.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/fs/affs/super.c b/fs/affs/super.c index 4d7e5b19e5cd..6a52e7875403 100644 --- a/fs/affs/super.c +++ b/fs/affs/super.c | |||
@@ -524,10 +524,11 @@ affs_statfs(struct super_block *sb, struct kstatfs *buf) | |||
524 | return 0; | 524 | return 0; |
525 | } | 525 | } |
526 | 526 | ||
527 | static struct super_block *affs_get_sb(struct file_system_type *fs_type, | 527 | static int affs_get_sb(struct file_system_type *fs_type, |
528 | int flags, const char *dev_name, void *data) | 528 | int flags, const char *dev_name, void *data, struct vfsmount *mnt) |
529 | { | 529 | { |
530 | return get_sb_bdev(fs_type, flags, dev_name, data, affs_fill_super); | 530 | return get_sb_bdev(fs_type, flags, dev_name, data, affs_fill_super, |
531 | mnt); | ||
531 | } | 532 | } |
532 | 533 | ||
533 | static struct file_system_type affs_fs_type = { | 534 | static struct file_system_type affs_fs_type = { |