Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 08a8f308 authored by Joe Perches's avatar Joe Perches Committed by Al Viro
Browse files

cramfs: Fix IS_ENABLED typo



There's an extra C here...

Fixes: 99c18ce5 ("cramfs: direct memory access support")
Acked-by: default avatarNicolas Pitre <nico@linaro.org>
Signed-off-by: default avatarJoe Perches <joe@perches.com>
Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent f4e4d434
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);