]> git.karo-electronics.de Git - karo-tx-linux.git/commit
printk: remove bounds checking for log_prefix
authorWilliam Douglas <william.r.douglas@gmail.com>
Mon, 24 Oct 2011 14:58:46 +0000 (01:58 +1100)
committerStephen Rothwell <sfr@canb.auug.org.au>
Tue, 25 Oct 2011 09:08:02 +0000 (20:08 +1100)
commit28955ff5c1b543fbf62773617742cf71f94974ae
treee6c6799eb85193c16a5de7899fe27ab7eadce64a
parent522e7685e1b31f74021438c4412d6db84c4ae576
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