]> git.karo-electronics.de Git - karo-tx-linux.git/commit
kernel: params/rcutiny needs module.h not moduleparam.h
authorPaul Gortmaker <paul.gortmaker@windriver.com>
Fri, 27 May 2011 01:07:10 +0000 (21:07 -0400)
committerPaul Gortmaker <paul.gortmaker@windriver.com>
Wed, 27 Jul 2011 23:09:05 +0000 (19:09 -0400)
commit87986ce6d97c34fed8120e337a121441316f32b9
tree20d2d399d10697c69f23137d239ea57231b7b77f
parent9cb332f8bd3d5b3b41e155f51e935c482fe07de9
kernel: params/rcutiny needs module.h not moduleparam.h

Through various other twisted include paths, these files were
getting the full module.h file, and hence living the illusion
that it really only needed moduleparam.h -- but the reality
is that once you remove module.h, you will get screenfulls of
things like:

kernel/params.c:583: warning: â€˜struct module_kobject’ declared inside parameter list

The file really requires module.h so simply make it so.  As the
file module.h grabs moduleparam.h on the fly, all will be well.

Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
kernel/params.c
kernel/rcutiny.c