diff options
author | Jeff Dike <jdike@addtoit.com> | 2007-06-08 22:46:54 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-06-09 02:23:33 +0200 |
commit | e16f5350d4cf402cffd18898b07c3b72917db192 (patch) | |
tree | 402b737c7cb0237c9cbc64882ac518ae2b067a4c /arch/um/drivers/line.c | |
parent | Char: stallion, proper fail return values (diff) | |
download | linux-e16f5350d4cf402cffd18898b07c3b72917db192.tar.xz linux-e16f5350d4cf402cffd18898b07c3b72917db192.zip |
uml: get declaration of simple_strtoul
Include linux/kernel.h wherever simple_strtoul is used. This kills a
compile warning in stderr_console.c and potential ones in the other files.
This also fixes a bunch of style violations in exitcode.c.
Signed-off-by: Jeff Dike <jdike@linux.intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/um/drivers/line.c')
-rw-r--r-- | arch/um/drivers/line.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/um/drivers/line.c b/arch/um/drivers/line.c index ced99106f798..4bd40bb43ec2 100644 --- a/arch/um/drivers/line.c +++ b/arch/um/drivers/line.c @@ -3,6 +3,7 @@ * Licensed under the GPL */ +#include "linux/kernel.h" #include "linux/sched.h" #include "linux/slab.h" #include "linux/list.h" |