diff options
author | Joe Perches <joe@perches.com> | 2018-05-13 15:05:47 -0700 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2018-05-21 14:30:08 -0400 |
commit | 08a8f3086880325433d66b2dc9cdfb3f095adddf (patch) | |
tree | 2c1ae0f1105952715c146377103d7b22af7149dd /fs/cramfs/inode.c | |
parent | f4e4d434fe3f5eceea470bf821683677dabe39c4 (diff) | |
download | linux-08a8f3086880325433d66b2dc9cdfb3f095adddf.tar.bz2 |
cramfs: Fix IS_ENABLED typo
There's an extra C here...
Fixes: 99c18ce580c6 ("cramfs: direct memory access support")
Acked-by: Nicolas Pitre <nico@linaro.org>
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/cramfs/inode.c')
-rw-r--r-- | fs/cramfs/inode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/cramfs/inode.c b/fs/cramfs/inode.c index 017b0ab19bc4..124b093d14e5 100644 --- a/fs/cramfs/inode.c +++ b/fs/cramfs/inode.c @@ -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); |