diff options
author | Sergei Shtylyov <sshtylyov@ru.mvista.com> | 2012-11-14 18:49:50 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-01-17 08:51:05 -0800 |
commit | 1353cac7123b29dc169e775a7f3cf20929d0ef72 (patch) | |
tree | be11b28e6e27b7914fa03848fdee24f5aa5ae81a /drivers | |
parent | 98bea5234411352182c84918640629fe05bf64b5 (diff) | |
download | kernel-common-1353cac7123b29dc169e775a7f3cf20929d0ef72.tar.gz kernel-common-1353cac7123b29dc169e775a7f3cf20929d0ef72.tar.bz2 kernel-common-1353cac7123b29dc169e775a7f3cf20929d0ef72.zip |
usb: musb: core: print new line in the driver banner again
commit 2ac788f705e5118dd45204e7a5bc8d5bb6873835 upstream.
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@ru.mvista.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/usb/musb/musb_core.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/usb/musb/musb_core.c b/drivers/usb/musb/musb_core.c index 66aaccf04490..a2b4008dc069 100644 --- a/drivers/usb/musb/musb_core.c +++ b/drivers/usb/musb/musb_core.c @@ -2400,10 +2400,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); } |