commit 92dcc0b68643955317fa4174442a6376df5a8c97 Author: Aaron Thompson Date: Mon Dec 1 22:15:24 2025 +0000 debugfs: Fix IS_ENABLED check diff --git a/fs/debugfs/inode.c b/fs/debugfs/inode.c index 930d66911fcd..4b263c328ed2 100644 --- a/fs/debugfs/inode.c +++ b/fs/debugfs/inode.c @@ -35,7 +35,7 @@ static struct vfsmount *debugfs_mount; static int debugfs_mount_count; static bool debugfs_registered; -static bool debugfs_enabled __ro_after_init = IS_ENABLED(DEBUG_FS_ALLOW_ALL); +static bool debugfs_enabled __ro_after_init = IS_ENABLED(CONFIG_DEBUG_FS_ALLOW_ALL); /* * Don't allow access attributes to be changed whilst the kernel is locked down