Shrink struct module: CONFIG_UNUSED_SYMBOLS ifdefs
authorDenys Vlasenko <vda.linux@googlemail.com>
Wed, 23 Jul 2008 00:24:26 +0000 (19:24 -0500)
committerRusty Russell <rusty@rustcorp.com.au>
Tue, 22 Jul 2008 09:24:27 +0000 (19:24 +1000)
commitf7f5b67557eac1131ba6532522e3c50eced34238
tree8547b900f4bc40f69673c78b261ac5b44423fbfb
parentaf5406895a05720a879dc33e2f4878fa503e81b3
Shrink struct module: CONFIG_UNUSED_SYMBOLS ifdefs

module.c and module.h conatains code for finding
exported symbols which are declared with EXPORT_UNUSED_SYMBOL,
and this code is compiled in even if CONFIG_UNUSED_SYMBOLS is not set
and thus there can be no EXPORT_UNUSED_SYMBOLs in modules anyway
(because EXPORT_UNUSED_SYMBOL(x) are compiled out to nothing then).

This patch adds required #ifdefs.

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
include/linux/module.h
init/Kconfig
kernel/module.c