Skip to content

Commit

Permalink
cramfs: Fix IS_ENABLED typo
Browse files Browse the repository at this point in the history
There's an extra C here...

Fixes: 99c18ce ("cramfs: direct memory access support")
Acked-by: Nicolas Pitre <[email protected]>
Signed-off-by: Joe Perches <[email protected]>
Signed-off-by: Al Viro <[email protected]>
  • Loading branch information
JoePerches authored and Al Viro committed May 21, 2018
1 parent f4e4d43 commit 08a8f30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fs/cramfs/inode.c
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,7 @@ static void cramfs_kill_sb(struct super_block *sb)
{
struct cramfs_sb_info *sbi = CRAMFS_SB(sb);

if (IS_ENABLED(CCONFIG_CRAMFS_MTD) && sb->s_mtd) {
if (IS_ENABLED(CONFIG_CRAMFS_MTD) && sb->s_mtd) {
if (sbi && sbi->mtd_point_size)
mtd_unpoint(sb->s_mtd, 0, sbi->mtd_point_size);
kill_mtd_super(sb);
Expand Down

0 comments on commit 08a8f30

Please sign in to comment.