aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/pxa/patches-3.10/a01-arm-debugll-printk.patch
blob: 874e5d302b3cd45101c2cf31eb01fd1bfa02d26c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
--- a/kernel/printk.c
+++ b/kernel/printk.c
@@ -48,6 +48,10 @@
 
 #include <asm/uaccess.h>
 
+#ifdef CONFIG_DEBUG_LL
+extern void printascii(char *);
+#endif /* CONFIG_DEBUG_LL */
+
 #define CREATE_TRACE_POINTS
 #include <trace/events/printk.h>
 
@@ -1578,6 +1582,10 @@ asmlinkage int vprintk_emit(int facility
 		}
 	}
 
+#ifdef CONFIG_DEBUG_LL
+	printascii(printk_buf);
+#endif
+
 	if (level == -1)
 		level = default_message_loglevel;