]> Git Repo - linux.git/commitdiff
init/version.c: define version_string only if CONFIG_KALLSYMS is not defined
authorDaniel Guilak <[email protected]>
Fri, 25 Jul 2008 08:45:50 +0000 (01:45 -0700)
committerLinus Torvalds <[email protected]>
Fri, 25 Jul 2008 17:53:29 +0000 (10:53 -0700)
int Version_* is only used with ksymoops, which is only needed (according
to README and Documentation/Changes) if CONFIG_KALLSYMS is NOT defined.
Therefore this patch defines version_string only if CONFIG_KALLSYMS is not
defined.

Signed-off-by: Daniel Guilak <[email protected]>
Cc: Randy Dunlap <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
init/version.c

index 041fd822ce2467073f462c70c1d64b56ec0feeb3..52a8b98642b8fb78343dfd63e20d1f448acb5866 100644 (file)
 #include <linux/utsrelease.h>
 #include <linux/version.h>
 
+#ifndef CONFIG_KALLSYMS
 #define version(a) Version_ ## a
 #define version_string(a) version(a)
 
 extern int version_string(LINUX_VERSION_CODE);
 int version_string(LINUX_VERSION_CODE);
+#endif
 
 struct uts_namespace init_uts_ns = {
        .kref = {
This page took 0.078979 seconds and 4 git commands to generate.