Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

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
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
/*
 * Range add and subtract
 */
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/sort.h>