]> git.karo-electronics.de Git - karo-tx-linux.git/commit
printk: remove bounds checking for log_prefix
authorWilliam Douglas <william.r.douglas@gmail.com>
Wed, 5 Oct 2011 00:43:28 +0000 (11:43 +1100)
committerStephen Rothwell <sfr@canb.auug.org.au>
Wed, 5 Oct 2011 07:50:56 +0000 (18:50 +1100)
commite5130b1e276444f8b5f22f31cd2fea2b66791e46
tree400cc485d287dbb370e2964a75813d22755c357d
parent73a3269e4f89214eb4cb275a1f29f937e9916bf5
printk: remove bounds checking for log_prefix

Currently log_prefix is testing that the first character of the log level
and facility is less than '0' and greater than '9' (which is always
false).

Since the code being updated works because strtoul bombs out (endp isn't
updated) and 0 is returned anyway just remove the check and don't change
the behavior of the function.

Signed-off-by: William Douglas <william.douglas@intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
kernel/printk.c