error: implicit declaration of function 'module_flags_taint'
authorKevin Winchester <kjwinchester@gmail.com>
Sun, 15 Jan 2012 23:32:55 +0000 (19:32 -0400)
committerLinus Torvalds <torvalds@linux-foundation.org>
Mon, 16 Jan 2012 00:21:07 +0000 (16:21 -0800)
Recent changes to kernel/module.c caused the following compile
error:

  kernel/module.c: In function ‘show_taint’:
  kernel/module.c:1024:2: error: implicit declaration of function ‘module_flags_taint’ [-Werror=implicit-function-declaration]
  cc1: some warnings being treated as errors

Correct this error by moving the definition of module_flags_taint
outside of the #ifdef CONFIG_MODULE_UNLOAD section.

Signed-off-by: Kevin Winchester <kjwinchester@gmail.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

No differences found