Commit 72a59aaada499d9bbf19f2fb68daa37502e4a9bb
1 parent
1596425fd7
Exists in
master
and in
6 other branches
kernel: params.c needs module.h not moduleparam.h
Through various other implicit include paths, some files were getting the full module.h file, and hence living the illusion that they really only needed moduleparam.h -- but the reality is that once you remove the module.h presence, these show up: kernel/params.c:583: warning: ‘struct module_kobject’ declared inside parameter list Such files really require 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>
Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff
kernel/params.c
... | ... | @@ -15,7 +15,7 @@ |
15 | 15 | along with this program; if not, write to the Free Software |
16 | 16 | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
17 | 17 | */ |
18 | -#include <linux/moduleparam.h> | |
18 | +#include <linux/module.h> | |
19 | 19 | #include <linux/kernel.h> |
20 | 20 | #include <linux/string.h> |
21 | 21 | #include <linux/errno.h> |