Commit 5c8a86e10a7c164f44537fabdc169fd8b4e7a440 (usb: musb: drop unneeded musb_debug trickery) erroneously removed '\n' from the driver's banner. Concatenate all the banner substrings while adding it back... Signed-off-by: Sergei Shtylyov <sshtylyov@xxxxxxxxxxxxx> Cc: stable@xxxxxxxxxxxxxxx # 3.0+ --- MUSB driver has been spoiling kernel output since 3.0 and nobody noticed -- I wonder how good it's actually tested (especially given the face that loading DaVinci glue as module just hangs DM6446 EVM board). This patch is atop of 'musb' branch of Felipe's tree... drivers/usb/musb/musb_core.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) Index: usb/drivers/usb/musb/musb_core.c =================================================================== --- usb.orig/drivers/usb/musb/musb_core.c +++ usb/drivers/usb/musb/musb_core.c @@ -2299,10 +2299,7 @@ static int __init musb_init(void) if (usb_disabled()) return 0; - pr_info("%s: version " MUSB_VERSION ", " - "?dma?" - ", " - "otg (peripheral+host)", + pr_info("%s: version " MUSB_VERSION ", ?dma?, otg (peripheral+host)\n", musb_driver_name); return platform_driver_register(&musb_driver); } -- To unsubscribe from this list: send the line "unsubscribe linux-usb" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html