Skip to content

Commit 08a8f30

Browse files
JoePerchesAl Viro
authored andcommitted
cramfs: Fix IS_ENABLED typo
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]>
1 parent f4e4d43 commit 08a8f30

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fs/cramfs/inode.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -492,7 +492,7 @@ static void cramfs_kill_sb(struct super_block *sb)
492492
{
493493
struct cramfs_sb_info *sbi = CRAMFS_SB(sb);
494494

495-
if (IS_ENABLED(CCONFIG_CRAMFS_MTD) && sb->s_mtd) {
495+
if (IS_ENABLED(CONFIG_CRAMFS_MTD) && sb->s_mtd) {
496496
if (sbi && sbi->mtd_point_size)
497497
mtd_unpoint(sb->s_mtd, 0, sbi->mtd_point_size);
498498
kill_mtd_super(sb);

0 commit comments

Comments
 (0)