]> 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, 28 Sep 2011 00:50:39 +0000 (10:50 +1000)
committerStephen Rothwell <sfr@canb.auug.org.au>
Fri, 30 Sep 2011 04:53:37 +0000 (14:53 +1000)
commita4080f4f9d991baf832912192b40fc69dfa9783e
tree2ee9099db9613e7ecff0604b79efa884420975b2
parentc53c02fe0b0c85300d3c6177b3fd2a5582f980ec
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 <>
kernel/printk.c