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

Fixes: a61f68119af3 ("[media] em28xx-video: 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-video.c

index eeb4ad5a3a768d4ce540bbd091a71eba3841b6d5..9ecf65629b3d219cb6b1a33d5380c24f69cf0c9a 100644 (file)
@@ -2007,7 +2007,7 @@ static int em28xx_v4l2_suspend(struct em28xx *dev)
        if (!dev->has_video)
                return 0;
 
-       em28xx_info("Suspending video extension");
+       em28xx_info("Suspending video extension\n");
        em28xx_stop_urbs(dev);
        return 0;
 }
@@ -2020,7 +2020,7 @@ static int em28xx_v4l2_resume(struct em28xx *dev)
        if (!dev->has_video)
                return 0;
 
-       em28xx_info("Resuming video extension");
+       em28xx_info("Resuming video extension\n");
        /* what do we do here */
        return 0;
 }