export.h: remove defined(__KERNEL__), which is no longer needed
The conditional, define(__KERNEL__), was added by commitf235541699
("export.h: allow for per-symbol configurable EXPORT_SYMBOL()"). It was needed at that time to avoid the build error of modpost with CONFIG_TRIM_UNUSED_KSYMS=y. Since commitb2c5cdcfd4
("modpost: remove symbol prefix support"), modpost no longer includes linux/export.h, thus the define(__KERNEL__) is unneeded. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Acked-by: Nicolas Pitre <nico@fluxnic.net>
This commit is contained in:
parent
6863f5643d
commit
a0469f989f
|
@ -20,7 +20,7 @@ extern struct module __this_module;
|
||||||
|
|
||||||
#ifdef CONFIG_MODULES
|
#ifdef CONFIG_MODULES
|
||||||
|
|
||||||
#if defined(__KERNEL__) && !defined(__GENKSYMS__)
|
#if !defined(__GENKSYMS__)
|
||||||
#ifdef CONFIG_MODVERSIONS
|
#ifdef CONFIG_MODVERSIONS
|
||||||
/* Mark the CRC weak since genksyms apparently decides not to
|
/* Mark the CRC weak since genksyms apparently decides not to
|
||||||
* generate a checksums for some symbols */
|
* generate a checksums for some symbols */
|
||||||
|
|
Loading…
Reference in New Issue