aboutsummaryrefslogtreecommitdiffstats
path: root/lib/argv_split.c
diff options
context:
space:
mode:
authorRobert P. J. Day <[email protected]>2007-10-19 22:25:12 +0000
committerAdrian Bunk <[email protected]>2007-10-19 22:26:10 +0000
commit5a56db1c0fe196eea896078338fbf9258ab8365b (patch)
tree4b2a9ddebe60a15893a0ce778ad4a9b84b684f1f /lib/argv_split.c
parentH8300: Typo: "buildin" -> "builtin" (diff)
downloadkernel-5a56db1c0fe196eea896078338fbf9258ab8365b.tar.gz
kernel-5a56db1c0fe196eea896078338fbf9258ab8365b.zip
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 <[email protected]> Signed-off-by: Adrian Bunk <[email protected]>
Diffstat (limited to 'lib/argv_split.c')
-rw-r--r--lib/argv_split.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/argv_split.c b/lib/argv_split.c
index fad6ce4f7b57..5205a8dae5bc 100644
--- a/lib/argv_split.c
+++ b/lib/argv_split.c
@@ -4,7 +4,8 @@
#include <linux/kernel.h>
#include <linux/ctype.h>
-#include <linux/bug.h>
+#include <linux/slab.h>
+#include <linux/module.h>
static const char *skip_sep(const char *cp)
{