linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] cramfs: Fix IS_ENABLED typo
@ 2018-05-13 22:05 Joe Perches
  2018-05-13 22:21 ` Nicolas Pitre
  0 siblings, 1 reply; 3+ messages in thread
From: Joe Perches @ 2018-05-13 22:05 UTC (permalink / raw)
  To: Nicolas Pitre; +Cc: LKML

There's an extra C here...

Fixes: 99c18ce580c6 ("cramfs: direct memory access support")
Signed-off-by: Joe Perches <joe@perches.com>
---
 fs/cramfs/inode.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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);

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2018-05-13 22:26 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-05-13 22:05 [PATCH] cramfs: Fix IS_ENABLED typo Joe Perches
2018-05-13 22:21 ` Nicolas Pitre
2018-05-13 22:26   ` Al Viro

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).