dect
/
linux-2.6
Archived
13
0
Fork 0

range: fix bogus misuse of module.h to get printk()

This file isn't doing anything with modules and so it should
not be including <linux/module.h> just to get basic stuff
like printk() and min/max.  Revector it to <linux/kernel.h>.

Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
This commit is contained in:
Paul Gortmaker 2011-05-25 09:52:21 -04:00
parent 639938eb60
commit 9a41845513
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
/*
* Range add and subtract
*/
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/sort.h>