tree-wide: replace config_enabled() with IS_ENABLED()
[cascardo/linux.git] / include / linux / fence.h
index 523ea3f..8cc719a 100644 (file)
@@ -358,7 +358,7 @@ u64 fence_context_alloc(unsigned num);
 #define FENCE_TRACE(f, fmt, args...) \
        do {                                                            \
                struct fence *__ff = (f);                               \
-               if (config_enabled(CONFIG_FENCE_TRACE))                 \
+               if (IS_ENABLED(CONFIG_FENCE_TRACE))                     \
                        pr_info("f %llu#%u: " fmt,                      \
                                __ff->context, __ff->seqno, ##args);    \
        } while (0)