1
0
Fork 0

lib: fix implicit users of kernel.h for TAINT_WARN

A pending header cleanup will cause this to show up as:

lib/average.c:38: error: 'TAINT_WARN' undeclared (first use in this function)
lib/list_debug.c:24: error: 'TAINT_WARN' undeclared (first use in this function)

and TAINT_WARN comes from include/linux/kernel.h file.

Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
hifive-unleashed-5.1
Paul Gortmaker 2012-01-20 18:46:49 -05:00
parent 4ebc1b4b00
commit b116ee4d77
2 changed files with 2 additions and 0 deletions

View File

@ -7,6 +7,7 @@
#include <linux/module.h>
#include <linux/average.h>
#include <linux/kernel.h>
#include <linux/bug.h>
#include <linux/log2.h>

View File

@ -8,6 +8,7 @@
#include <linux/module.h>
#include <linux/list.h>
#include <linux/kernel.h>
/*
* Insert a new entry between two known consecutive entries.