OSDN Git Service

usb: gadget: max3420: Add a missing '\n' in a log message
authorChristophe JAILLET <christophe.jaillet@wanadoo.fr>
Sat, 11 Apr 2020 06:56:21 +0000 (08:56 +0200)
committerFelipe Balbi <balbi@kernel.org>
Mon, 25 May 2020 08:09:37 +0000 (11:09 +0300)
Message logged by 'dev_xxx()' or 'pr_xxx()' should end with a '\n'.

Fixes: 48ba02b2e2b1 ("usb: gadget: add udc driver for max3420")
Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Signed-off-by: Felipe Balbi <balbi@kernel.org>
drivers/usb/gadget/udc/max3420_udc.c

index 8fbc083..23f3394 100644 (file)
@@ -901,7 +901,7 @@ loop:
        }
 
        set_current_state(TASK_RUNNING);
-       dev_info(udc->dev, "SPI thread exiting");
+       dev_info(udc->dev, "SPI thread exiting\n");
        return 0;
 }