]> git.hungrycats.org Git - linux/commitdiff
em28xx-video: fix missing newlines
authorRussell King <rmk+kernel@arm.linux.org.uk>
Sat, 20 Dec 2014 12:45:51 +0000 (09:45 -0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 6 Mar 2015 22:52:52 +0000 (14:52 -0800)
commit 32e63f0368ed16e5ac417dc0bc2a5f8acbfb1511 upstream.

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")
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>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/media/usb/em28xx/em28xx-video.c

index da69d065f7fcd556647b047b846b46cc2329eef2..e0f4be8c5a19695f08e52317c5d8ce0a6852b99c 100644 (file)
@@ -2005,7 +2005,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;
 }
@@ -2018,7 +2018,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;
 }