Commit 9a418455 authored by Paul Gortmaker's avatar Paul Gortmaker

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: default avatarPaul Gortmaker <paul.gortmaker@windriver.com>
parent 639938eb
/*
* Range add and subtract
*/
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/sort.h>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment