mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
[media] em28xx-core: fix missing newlines
Inspection shows that newlines are missing from several kernel messages
in em28xx-core. Fix these.
Fixes: 9c669b7314
("[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>
This commit is contained in:
parent
ebfd59cf54
commit
522adc7c1f
1 changed files with 2 additions and 2 deletions
|
@ -1125,7 +1125,7 @@ int em28xx_suspend_extension(struct em28xx *dev)
|
|||
{
|
||||
const struct em28xx_ops *ops = NULL;
|
||||
|
||||
em28xx_info("Suspending extensions");
|
||||
em28xx_info("Suspending extensions\n");
|
||||
mutex_lock(&em28xx_devlist_mutex);
|
||||
list_for_each_entry(ops, &em28xx_extension_devlist, next) {
|
||||
if (ops->suspend)
|
||||
|
@ -1139,7 +1139,7 @@ int em28xx_resume_extension(struct em28xx *dev)
|
|||
{
|
||||
const struct em28xx_ops *ops = NULL;
|
||||
|
||||
em28xx_info("Resuming extensions");
|
||||
em28xx_info("Resuming extensions\n");
|
||||
mutex_lock(&em28xx_devlist_mutex);
|
||||
list_for_each_entry(ops, &em28xx_extension_devlist, next) {
|
||||
if (ops->resume)
|
||||
|
|
Loading…
Reference in a new issue