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

[media] em28xx-audio: fix missing newlines

commit fbaa48d1 upstream.

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

Fixes: 6d746f91 ("[media] em28xx-audio: 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 43a410cf
......@@ -1006,7 +1006,7 @@ static int em28xx_audio_suspend(struct em28xx *dev)
if (!dev->has_alsa_audio)
return 0;
em28xx_info("Suspending audio extension");
em28xx_info("Suspending audio extension\n");
em28xx_deinit_isoc_audio(dev);
atomic_set(&dev->adev.stream_started, 0);
return 0;
......@@ -1020,7 +1020,7 @@ static int em28xx_audio_resume(struct em28xx *dev)
if (!dev->has_alsa_audio)
return 0;
em28xx_info("Resuming audio extension");
em28xx_info("Resuming audio extension\n");
/* Nothing to do other than schedule_work() ?? */
schedule_work(&dev->adev.wq_trigger);
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