diff options
author | Russell King <rmk+kernel@arm.linux.org.uk> | 2014-12-20 07:45:26 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@osg.samsung.com> | 2014-12-23 11:46:04 -0500 |
commit | ebfd59cf549899a166d595bf1eab7eec3299ebe7 (patch) | |
tree | 9841868e5b153b1342bfa1dfea2121271686a1ff /drivers/media/usb/em28xx | |
parent | 0418ca6073478f54f1da2e4013fa50d36838de75 (diff) |
[media] em28xx-input: fix missing newlines
Inspection shows that newlines are missing from several kernel messages
in em28xx-input. Fix these.
Fixes: 5025076aadfe ("[media] em28xx-input: 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>
Diffstat (limited to 'drivers/media/usb/em28xx')
-rw-r--r-- | drivers/media/usb/em28xx/em28xx-input.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/usb/em28xx/em28xx-input.c b/drivers/media/usb/em28xx/em28xx-input.c index aea22deadc0a..4007356d991d 100644 --- a/drivers/media/usb/em28xx/em28xx-input.c +++ b/drivers/media/usb/em28xx/em28xx-input.c | |||
@@ -861,7 +861,7 @@ static int em28xx_ir_suspend(struct em28xx *dev) | |||
861 | if (dev->is_audio_only) | 861 | if (dev->is_audio_only) |
862 | return 0; | 862 | return 0; |
863 | 863 | ||
864 | em28xx_info("Suspending input extension"); | 864 | em28xx_info("Suspending input extension\n"); |
865 | if (ir) | 865 | if (ir) |
866 | cancel_delayed_work_sync(&ir->work); | 866 | cancel_delayed_work_sync(&ir->work); |
867 | cancel_delayed_work_sync(&dev->buttons_query_work); | 867 | cancel_delayed_work_sync(&dev->buttons_query_work); |
@@ -878,7 +878,7 @@ static int em28xx_ir_resume(struct em28xx *dev) | |||
878 | if (dev->is_audio_only) | 878 | if (dev->is_audio_only) |
879 | return 0; | 879 | return 0; |
880 | 880 | ||
881 | em28xx_info("Resuming input extension"); | 881 | em28xx_info("Resuming input extension\n"); |
882 | /* if suspend calls ir_raw_event_unregister(), the should call | 882 | /* if suspend calls ir_raw_event_unregister(), the should call |
883 | ir_raw_event_register() */ | 883 | ir_raw_event_register() */ |
884 | if (ir) | 884 | if (ir) |