dect
/
linux-2.6
Archived
13
0
Fork 0

Squashfs: wrap squashfs_mount() definition

Squashfs_get_sb() to squashfs_mount() conversion (commit 152a0836)
results in line over 80 characters.

Signed-off-by: Phillip Lougher <phillip@lougher.demon.co.uk>
This commit is contained in:
Phillip Lougher 2011-02-28 18:43:48 +00:00
parent 3ad126641c
commit 003a3194d3
1 changed files with 2 additions and 2 deletions

View File

@ -373,8 +373,8 @@ static void squashfs_put_super(struct super_block *sb)
}
static struct dentry *squashfs_mount(struct file_system_type *fs_type, int flags,
const char *dev_name, void *data)
static struct dentry *squashfs_mount(struct file_system_type *fs_type,
int flags, const char *dev_name, void *data)
{
return mount_bdev(fs_type, flags, dev_name, data, squashfs_fill_super);
}