diff options
author | Phillip Lougher <phillip@lougher.demon.co.uk> | 2011-02-28 13:43:48 -0500 |
---|---|---|
committer | Phillip Lougher <phillip@lougher.demon.co.uk> | 2011-02-28 13:43:48 -0500 |
commit | 003a3194d36dc22c29cacda4d0c6fede2753c9d0 (patch) | |
tree | 01d25d5331295b6ea14a95df50fe13ba88586f7b /fs/squashfs | |
parent | 3ad126641c05f93d2fa153bb8ff762fb4cdbb885 (diff) |
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>
Diffstat (limited to 'fs/squashfs')
-rw-r--r-- | fs/squashfs/super.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/squashfs/super.c b/fs/squashfs/super.c index 95467db71a8e..5c8184c061a4 100644 --- a/fs/squashfs/super.c +++ b/fs/squashfs/super.c | |||
@@ -373,8 +373,8 @@ static void squashfs_put_super(struct super_block *sb) | |||
373 | } | 373 | } |
374 | 374 | ||
375 | 375 | ||
376 | static struct dentry *squashfs_mount(struct file_system_type *fs_type, int flags, | 376 | static struct dentry *squashfs_mount(struct file_system_type *fs_type, |
377 | const char *dev_name, void *data) | 377 | int flags, const char *dev_name, void *data) |
378 | { | 378 | { |
379 | return mount_bdev(fs_type, flags, dev_name, data, squashfs_fill_super); | 379 | return mount_bdev(fs_type, flags, dev_name, data, squashfs_fill_super); |
380 | } | 380 | } |