aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/kern_levels.h
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2012-07-30 14:40:21 -0700
committerLinus Torvalds <torvalds@linux-foundation.org>2012-07-30 17:25:14 -0700
commit61e99ab8e35a88b8c4d0f80d3df9ee16df471be5 (patch)
tree0bd8b37db94b22b3cd1dce2d6bbe65e6c353cb6e /include/linux/kern_levels.h
parentprintk: only look for prefix levels in kernel messages (diff)
downloadlinux-dev-61e99ab8e35a88b8c4d0f80d3df9ee16df471be5.tar.xz
linux-dev-61e99ab8e35a88b8c4d0f80d3df9ee16df471be5.zip
printk: remove the now unnecessary "C" annotation for KERN_CONT
Now that all KERN_<LEVEL> uses are prefixed with ASCII SOH, there is no need for a KERN_CONT. Keep it backward compatible by adding #define KERN_CONT "" Reduces kernel image size a thousand bytes. Signed-off-by: Joe Perches <joe@perches.com> Cc: Kay Sievers <kay.sievers@vrfy.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/linux/kern_levels.h')
-rw-r--r--include/linux/kern_levels.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/kern_levels.h b/include/linux/kern_levels.h
index 8c719a955b5b..866caaa9e2bb 100644
--- a/include/linux/kern_levels.h
+++ b/include/linux/kern_levels.h
@@ -20,6 +20,6 @@
* line that had no enclosing \n). Only to be used by core/arch code
* during early bootup (a continued line is not SMP-safe otherwise).
*/
-#define KERN_CONT KERN_SOH "c"
+#define KERN_CONT ""
#endif