mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
[media] em28xx-audio: fix missing newlines
Inspection shows that newlines are missing from several kernel messages
in em28xx-audio. Fix these.
Fixes: 6d746f91f2
("[media] em28xx-audio: 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>
This commit is contained in:
parent
7818b0aab8
commit
fbaa48d185
1 changed files with 2 additions and 2 deletions
|
@ -1005,7 +1005,7 @@ static int em28xx_audio_suspend(struct em28xx *dev)
|
|||
if (dev->usb_audio_type != EM28XX_USB_AUDIO_VENDOR)
|
||||
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;
|
||||
|
@ -1019,7 +1019,7 @@ static int em28xx_audio_resume(struct em28xx *dev)
|
|||
if (dev->usb_audio_type != EM28XX_USB_AUDIO_VENDOR)
|
||||
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;
|
||||
|
|
Loading…
Reference in a new issue