Commit 416efc8d authored by Alexander Viro's avatar Alexander Viro Committed by Linus Torvalds

[PATCH] (1/6) more ->get_sb() stuff

Fix for idiotic typo in __get_sb_single().
parent ec1d595c
...@@ -254,7 +254,6 @@ static struct super_block *bd_get_sb(struct file_system_type *fs_type, ...@@ -254,7 +254,6 @@ static struct super_block *bd_get_sb(struct file_system_type *fs_type,
} }
static struct file_system_type bd_type = { static struct file_system_type bd_type = {
owner: THIS_MODULE,
name: "bdev", name: "bdev",
get_sb: bd_get_sb, get_sb: bd_get_sb,
fs_flags: FS_NOMOUNT, fs_flags: FS_NOMOUNT,
......
...@@ -805,7 +805,7 @@ static struct super_block *__get_sb_nodev(struct file_system_type *fs_type, ...@@ -805,7 +805,7 @@ static struct super_block *__get_sb_nodev(struct file_system_type *fs_type,
static struct super_block *__get_sb_single(struct file_system_type *fs_type, static struct super_block *__get_sb_single(struct file_system_type *fs_type,
int flags, char *dev_name, void * data) int flags, char *dev_name, void * data)
{ {
return get_sb_nodev(fs_type, flags, data, fill_super); return get_sb_single(fs_type, flags, data, fill_super);
} }
struct vfsmount * struct vfsmount *
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment