Commit 0445f01a authored by Fabian Frederick's avatar Fabian Frederick Committed by Linus Torvalds

fs/affs/super.c: fix switch indentation

Fix checkpatch error:

  ERROR: switch and case should be at the same indent
Signed-off-by: default avatarFabian Frederick <fabf@skynet.be>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 0cdfe18a
...@@ -432,39 +432,39 @@ static int affs_fill_super(struct super_block *sb, void *data, int silent) ...@@ -432,39 +432,39 @@ static int affs_fill_super(struct super_block *sb, void *data, int silent)
sb->s_flags |= MS_RDONLY; sb->s_flags |= MS_RDONLY;
} }
switch (chksum) { switch (chksum) {
case MUFS_FS: case MUFS_FS:
case MUFS_INTLFFS: case MUFS_INTLFFS:
case MUFS_DCFFS: case MUFS_DCFFS:
sbi->s_flags |= SF_MUFS; sbi->s_flags |= SF_MUFS;
/* fall thru */ /* fall thru */
case FS_INTLFFS: case FS_INTLFFS:
case FS_DCFFS: case FS_DCFFS:
sbi->s_flags |= SF_INTL; sbi->s_flags |= SF_INTL;
break; break;
case MUFS_FFS: case MUFS_FFS:
sbi->s_flags |= SF_MUFS; sbi->s_flags |= SF_MUFS;
break; break;
case FS_FFS: case FS_FFS:
break; break;
case MUFS_OFS: case MUFS_OFS:
sbi->s_flags |= SF_MUFS; sbi->s_flags |= SF_MUFS;
/* fall thru */ /* fall thru */
case FS_OFS: case FS_OFS:
sbi->s_flags |= SF_OFS; sbi->s_flags |= SF_OFS;
sb->s_flags |= MS_NOEXEC; sb->s_flags |= MS_NOEXEC;
break; break;
case MUFS_DCOFS: case MUFS_DCOFS:
case MUFS_INTLOFS: case MUFS_INTLOFS:
sbi->s_flags |= SF_MUFS; sbi->s_flags |= SF_MUFS;
case FS_DCOFS: case FS_DCOFS:
case FS_INTLOFS: case FS_INTLOFS:
sbi->s_flags |= SF_INTL | SF_OFS; sbi->s_flags |= SF_INTL | SF_OFS;
sb->s_flags |= MS_NOEXEC; sb->s_flags |= MS_NOEXEC;
break; break;
default: default:
pr_err("Unknown filesystem on device %s: %08X\n", pr_err("Unknown filesystem on device %s: %08X\n",
sb->s_id, chksum); sb->s_id, chksum);
return -EINVAL; return -EINVAL;
} }
if (mount_flags & SF_VERBOSE) { if (mount_flags & SF_VERBOSE) {
......
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