The patch titled Subject: vmlinux.lds.h: replace config_enabled() with IS_ENABLED() has been added to the -mm tree. Its filename is vmlinuxldsh-replace-config_enabled-with-is_enabled.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/vmlinuxldsh-replace-config_enabled-with-is_enabled.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/vmlinuxldsh-replace-config_enabled-with-is_enabled.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Masahiro Yamada <yamada.masahiro@xxxxxxxxxxxxx> Subject: vmlinux.lds.h: replace config_enabled() with IS_ENABLED() The use of config_enabled() against config options is ambiguous. Now, IS_ENABLED() is implemented purely with macro expansion, so let's replace config_enabled() with IS_ENABLED(). Link: http://lkml.kernel.org/r/1465883938-25194-5-git-send-email-yamada.masahiro@xxxxxxxxxxxxx Signed-off-by: Masahiro Yamada <yamada.masahiro@xxxxxxxxxxxxx> Cc: Rusty Russell <rusty@xxxxxxxxxxxxxxx> Cc: Michal Simek <michal.simek@xxxxxxxxxx> Cc: Arnd Bergmann <arnd@xxxxxxxx> Cc: Michal Marek <mmarek@xxxxxxx> Cc: Nicolas Pitre <nicolas.pitre@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/asm-generic/vmlinux.lds.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN include/asm-generic/vmlinux.lds.h~vmlinuxldsh-replace-config_enabled-with-is_enabled include/asm-generic/vmlinux.lds.h --- a/include/asm-generic/vmlinux.lds.h~vmlinuxldsh-replace-config_enabled-with-is_enabled +++ a/include/asm-generic/vmlinux.lds.h @@ -164,7 +164,7 @@ #define ___OF_TABLE(cfg, name) _OF_TABLE_##cfg(name) #define __OF_TABLE(cfg, name) ___OF_TABLE(cfg, name) -#define OF_TABLE(cfg, name) __OF_TABLE(config_enabled(cfg), name) +#define OF_TABLE(cfg, name) __OF_TABLE(IS_ENABLED(cfg), name) #define _OF_TABLE_0(name) #define _OF_TABLE_1(name) \ . = ALIGN(8); \ _ Patches currently in -mm which might be from yamada.masahiro@xxxxxxxxxxxxx are kconfigh-use-__is_defined-to-check-if-module-is-defined.patch exporth-use-__is_defined-to-check-if-__ksym_-is-defined.patch kconfigh-use-already-defined-macros-for-is_reachable-define.patch kconfigh-allow-to-use-is_enablereachable-in-macro-expansion.patch vmlinuxldsh-replace-config_enabled-with-is_enabled.patch tree-wide-replace-config_enabled-with-is_enabled.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html