diff options
author | Russell King <rmk+kernel@arm.linux.org.uk> | 2014-12-20 07:45:51 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@osg.samsung.com> | 2014-12-23 11:46:08 -0500 |
commit | 32e63f0368ed16e5ac417dc0bc2a5f8acbfb1511 (patch) | |
tree | c47d4325cfadd7b65ea84b1daae05314375fce57 /drivers/media/usb/em28xx | |
parent | a084c57fc1ccd24ef8e6ca41e75afa745d5dbb98 (diff) |
[media] em28xx-video: fix missing newlines
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>
Diffstat (limited to 'drivers/media/usb/em28xx')
-rw-r--r-- | drivers/media/usb/em28xx/em28xx-video.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/usb/em28xx/em28xx-video.c b/drivers/media/usb/em28xx/em28xx-video.c index eeb4ad5a3a76..9ecf65629b3d 100644 --- a/drivers/media/usb/em28xx/em28xx-video.c +++ b/drivers/media/usb/em28xx/em28xx-video.c | |||
@@ -2007,7 +2007,7 @@ static int em28xx_v4l2_suspend(struct em28xx *dev) | |||
2007 | if (!dev->has_video) | 2007 | if (!dev->has_video) |
2008 | return 0; | 2008 | return 0; |
2009 | 2009 | ||
2010 | em28xx_info("Suspending video extension"); | 2010 | em28xx_info("Suspending video extension\n"); |
2011 | em28xx_stop_urbs(dev); | 2011 | em28xx_stop_urbs(dev); |
2012 | return 0; | 2012 | return 0; |
2013 | } | 2013 | } |
@@ -2020,7 +2020,7 @@ static int em28xx_v4l2_resume(struct em28xx *dev) | |||
2020 | if (!dev->has_video) | 2020 | if (!dev->has_video) |
2021 | return 0; | 2021 | return 0; |
2022 | 2022 | ||
2023 | em28xx_info("Resuming video extension"); | 2023 | em28xx_info("Resuming video extension\n"); |
2024 | /* what do we do here */ | 2024 | /* what do we do here */ |
2025 | return 0; | 2025 | return 0; |
2026 | } | 2026 | } |