diff mbox

MUSB regression in 2.6.31-rc6

Message ID D1AF0CA1-B658-4BA3-8D68-F2DD5B1D91B8@student.utwente.nl (mailing list archive)
State Superseded, archived
Delegated to: Tony Lindgren
Headers show

Commit Message

Koen Kooi Aug. 16, 2009, 8:14 a.m. UTC
Op 16 aug 2009, om 09:44 heeft Jarkko Nikula het volgende geschreven:

>
> By some reason CONFIG_OMAP_LL_DEBUG_UART3=y and CONFIG_DEBUG_LL=y
> don't work in mainline so hard to trace what is make an oops.

Try updating this patch to current mainline:

          * Copy the output into log_buf.  If the caller didn't provide
          * appropriate log level tags, we insert them here


regards,

Koen
diff mbox

Patch

--- a/kernel/printk.c
+++ b/kernel/printk.c
@@ -16,6 +16,8 @@ 
   *     01Mar01 Andrew Morton <andrewm@uow.edu.au>
   */

+extern void printascii(const char *);
+
  #include <linux/kernel.h>
  #include <linux/mm.h>
  #include <linux/tty.h>
@@ -653,6 +655,8 @@  asmlinkage int vprintk(const char *fmt, va_list  
args)
         /* Emit the output into the temporary buffer */
         printed_len = vscnprintf(printk_buf, sizeof(printk_buf), fmt,  
args);

+       printascii(printk_buf);
+
         /*