aboutsummaryrefslogtreecommitdiffstats
path: root/fs/btrfs/super.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/btrfs/super.c')
-rw-r--r--fs/btrfs/super.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/btrfs/super.c b/fs/btrfs/super.c
index cc5a2a8a5acb..fb72e2bea882 100644
--- a/fs/btrfs/super.c
+++ b/fs/btrfs/super.c
@@ -740,7 +740,7 @@ static int btrfs_set_super(struct super_block *s, void *data)
740 * for multiple device setup. Make sure to keep it in sync. 740 * for multiple device setup. Make sure to keep it in sync.
741 */ 741 */
742static struct dentry *btrfs_mount(struct file_system_type *fs_type, int flags, 742static struct dentry *btrfs_mount(struct file_system_type *fs_type, int flags,
743 const char *dev_name, void *data) 743 const char *device_name, void *data)
744{ 744{
745 struct block_device *bdev = NULL; 745 struct block_device *bdev = NULL;
746 struct super_block *s; 746 struct super_block *s;
@@ -763,7 +763,7 @@ static struct dentry *btrfs_mount(struct file_system_type *fs_type, int flags,
763 if (error) 763 if (error)
764 return ERR_PTR(error); 764 return ERR_PTR(error);
765 765
766 error = btrfs_scan_one_device(dev_name, mode, fs_type, &fs_devices); 766 error = btrfs_scan_one_device(device_name, mode, fs_type, &fs_devices);
767 if (error) 767 if (error)
768 goto error_free_subvol_name; 768 goto error_free_subvol_name;
769 769