Commit 9a418455134f5dc23f124d2818b2e8e1cea997a1

Authored by Paul Gortmaker
1 parent 639938eb60

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>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

1 1 /*
2 2 * Range add and subtract
3 3 */
4   -#include <linux/module.h>
  4 +#include <linux/kernel.h>
5 5 #include <linux/init.h>
6 6 #include <linux/sort.h>
7 7