[media] em28xx-input: fix missing newlines
authorRussell King <rmk+kernel@arm.linux.org.uk>
Sat, 20 Dec 2014 12:45:26 +0000 (09:45 -0300)
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>
Tue, 23 Dec 2014 16:46:04 +0000 (14:46 -0200)
Inspection shows that newlines are missing from several kernel messages
in em28xx-input.  Fix these.

Fixes: 5025076aadfe ("[media] em28xx-input: implement em28xx_ops: suspend/resume hooks")
Cc: <stable@vger.kernel.org>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Reviewed-by: Frank Schäfer <fschaefer.oss@googlemail.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
drivers/media/usb/em28xx/em28xx-input.c

index aea22deadc0a60b33f4f1dff35653920ba0e28f6..4007356d991df0521517498a8cf42c4660ba4351 100644 (file)
@@ -861,7 +861,7 @@ static int em28xx_ir_suspend(struct em28xx *dev)
        if (dev->is_audio_only)
                return 0;
 
-       em28xx_info("Suspending input extension");
+       em28xx_info("Suspending input extension\n");
        if (ir)
                cancel_delayed_work_sync(&ir->work);
        cancel_delayed_work_sync(&dev->buttons_query_work);
@@ -878,7 +878,7 @@ static int em28xx_ir_resume(struct em28xx *dev)
        if (dev->is_audio_only)
                return 0;
 
-       em28xx_info("Resuming input extension");
+       em28xx_info("Resuming input extension\n");
        /* if suspend calls ir_raw_event_unregister(), the should call
           ir_raw_event_register() */
        if (ir)