aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/usb
diff options
context:
space:
mode:
authorRussell King <rmk+kernel@arm.linux.org.uk>2014-12-20 07:45:31 -0500
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>2014-12-23 11:46:05 -0500
commit522adc7c1f70d302155bb07f7fdf5a7fe4ff9094 (patch)
treedc0ceb4a52a4d06a6c59ba4ad9342bb20c918843 /drivers/media/usb
parentebfd59cf549899a166d595bf1eab7eec3299ebe7 (diff)
[media] em28xx-core: fix missing newlines
Inspection shows that newlines are missing from several kernel messages in em28xx-core. Fix these. Fixes: 9c669b731470 ("[media] em28xx: add suspend/resume to em28xx_ops") 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')
-rw-r--r--drivers/media/usb/em28xx/em28xx-core.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/usb/em28xx/em28xx-core.c b/drivers/media/usb/em28xx/em28xx-core.c
index 86461a708abe..37456079f490 100644
--- a/drivers/media/usb/em28xx/em28xx-core.c
+++ b/drivers/media/usb/em28xx/em28xx-core.c
@@ -1125,7 +1125,7 @@ int em28xx_suspend_extension(struct em28xx *dev)
1125{ 1125{
1126 const struct em28xx_ops *ops = NULL; 1126 const struct em28xx_ops *ops = NULL;
1127 1127
1128 em28xx_info("Suspending extensions"); 1128 em28xx_info("Suspending extensions\n");
1129 mutex_lock(&em28xx_devlist_mutex); 1129 mutex_lock(&em28xx_devlist_mutex);
1130 list_for_each_entry(ops, &em28xx_extension_devlist, next) { 1130 list_for_each_entry(ops, &em28xx_extension_devlist, next) {
1131 if (ops->suspend) 1131 if (ops->suspend)
@@ -1139,7 +1139,7 @@ int em28xx_resume_extension(struct em28xx *dev)
1139{ 1139{
1140 const struct em28xx_ops *ops = NULL; 1140 const struct em28xx_ops *ops = NULL;
1141 1141
1142 em28xx_info("Resuming extensions"); 1142 em28xx_info("Resuming extensions\n");
1143 mutex_lock(&em28xx_devlist_mutex); 1143 mutex_lock(&em28xx_devlist_mutex);
1144 list_for_each_entry(ops, &em28xx_extension_devlist, next) { 1144 list_for_each_entry(ops, &em28xx_extension_devlist, next) {
1145 if (ops->resume) 1145 if (ops->resume)