Commit dd703929 authored by Russell King's avatar Russell King Committed by Luis Henriques

[media] em28xx-video: fix missing newlines

commit 32e63f03 upstream.

Inspection shows that newlines are missing from several kernel messages
in em28xx-video.  Fix these.

Fixes: a61f6811 ("[media] em28xx-video: implement em28xx_ops: suspend/resume hooks")
Signed-off-by: default avatarRussell King <rmk+kernel@arm.linux.org.uk>
Reviewed-by: default avatarFrank Schäfer <fschaefer.oss@googlemail.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@osg.samsung.com>
Signed-off-by: default avatarLuis Henriques <luis.henriques@canonical.com>
parent f620956c
......@@ -2027,7 +2027,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;
}
......@@ -2040,7 +2040,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;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment