Commit 5a56db1c0fe196eea896078338fbf9258ab8365b

Authored by Robert P. J. Day
Committed by Adrian Bunk
1 parent 5c5f4fee64

LIB: Replace inappropriate include of <linux/bug.h>

Replace an irrelevant include of bug.h with the more appropriate
includes of slab.h and module.h.

it's not as if the original inclusion is an error, it's simply not
related to the contents of that source file, while the other two are.

compile-tested on i386.

Signed-off-by: Robert P. J. Day <rpjday@mindspring.com>
Signed-off-by: Adrian Bunk <bunk@kernel.org>

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

... ... @@ -4,7 +4,8 @@
4 4  
5 5 #include <linux/kernel.h>
6 6 #include <linux/ctype.h>
7   -#include <linux/bug.h>
  7 +#include <linux/slab.h>
  8 +#include <linux/module.h>
8 9  
9 10 static const char *skip_sep(const char *cp)
10 11 {