diff options
Diffstat (limited to 'fs/adfs')
-rw-r--r-- | fs/adfs/super.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/fs/adfs/super.c b/fs/adfs/super.c index d9803f73236f..959dbff2d42d 100644 --- a/fs/adfs/super.c +++ b/fs/adfs/super.c | |||
@@ -490,17 +490,16 @@ error: | |||
490 | return -EINVAL; | 490 | return -EINVAL; |
491 | } | 491 | } |
492 | 492 | ||
493 | static int adfs_get_sb(struct file_system_type *fs_type, | 493 | static struct dentry *adfs_mount(struct file_system_type *fs_type, |
494 | int flags, const char *dev_name, void *data, struct vfsmount *mnt) | 494 | int flags, const char *dev_name, void *data) |
495 | { | 495 | { |
496 | return get_sb_bdev(fs_type, flags, dev_name, data, adfs_fill_super, | 496 | return mount_bdev(fs_type, flags, dev_name, data, adfs_fill_super); |
497 | mnt); | ||
498 | } | 497 | } |
499 | 498 | ||
500 | static struct file_system_type adfs_fs_type = { | 499 | static struct file_system_type adfs_fs_type = { |
501 | .owner = THIS_MODULE, | 500 | .owner = THIS_MODULE, |
502 | .name = "adfs", | 501 | .name = "adfs", |
503 | .get_sb = adfs_get_sb, | 502 | .mount = adfs_mount, |
504 | .kill_sb = kill_block_super, | 503 | .kill_sb = kill_block_super, |
505 | .fs_flags = FS_REQUIRES_DEV, | 504 | .fs_flags = FS_REQUIRES_DEV, |
506 | }; | 505 | }; |