This is a note to let you know that I've just added the patch titled
[media] em28xx-dvb: fix missing newlines
to the 3.18-stable tree which can be found at:
http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary
The filename of the patch is:
em28xx-dvb-fix-missing-newlines.patch
and it can be found in the queue-3.18 subdirectory.
If you, or anyone else, feels it should not be added to the stable tree,
please let <[email protected]> know about it.
>From a084c57fc1ccd24ef8e6ca41e75afa745d5dbb98 Mon Sep 17 00:00:00 2001
From: Russell King <[email protected]>
Date: Sat, 20 Dec 2014 09:45:46 -0300
Subject: [media] em28xx-dvb: fix missing newlines
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
From: Russell King <[email protected]>
commit a084c57fc1ccd24ef8e6ca41e75afa745d5dbb98 upstream.
Inspection shows that newlines are missing from several kernel messages
in em28xx-dvb. Fix these.
Fixes: ca2b46dacbf5 ("[media] em28xx-dvb: implement em28xx_ops: suspend/resume
hooks")
Signed-off-by: Russell King <[email protected]>
Reviewed-by: Frank Schäfer <[email protected]>
Signed-off-by: Mauro Carvalho Chehab <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
---
drivers/media/usb/em28xx/em28xx-dvb.c | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
--- a/drivers/media/usb/em28xx/em28xx-dvb.c
+++ b/drivers/media/usb/em28xx/em28xx-dvb.c
@@ -1718,17 +1718,17 @@ static int em28xx_dvb_suspend(struct em2
if (!dev->board.has_dvb)
return 0;
- em28xx_info("Suspending DVB extension");
+ em28xx_info("Suspending DVB extension\n");
if (dev->dvb) {
struct em28xx_dvb *dvb = dev->dvb;
if (dvb->fe[0]) {
ret = dvb_frontend_suspend(dvb->fe[0]);
- em28xx_info("fe0 suspend %d", ret);
+ em28xx_info("fe0 suspend %d\n", ret);
}
if (dvb->fe[1]) {
dvb_frontend_suspend(dvb->fe[1]);
- em28xx_info("fe1 suspend %d", ret);
+ em28xx_info("fe1 suspend %d\n", ret);
}
}
@@ -1745,18 +1745,18 @@ static int em28xx_dvb_resume(struct em28
if (!dev->board.has_dvb)
return 0;
- em28xx_info("Resuming DVB extension");
+ em28xx_info("Resuming DVB extension\n");
if (dev->dvb) {
struct em28xx_dvb *dvb = dev->dvb;
if (dvb->fe[0]) {
ret = dvb_frontend_resume(dvb->fe[0]);
- em28xx_info("fe0 resume %d", ret);
+ em28xx_info("fe0 resume %d\n", ret);
}
if (dvb->fe[1]) {
ret = dvb_frontend_resume(dvb->fe[1]);
- em28xx_info("fe1 resume %d", ret);
+ em28xx_info("fe1 resume %d\n", ret);
}
}
Patches currently in stable-queue which might be from
[email protected] are
queue-3.18/arm-8284-1-sa1100-clear-rcsr_smr-on-resume.patch
queue-3.18/em28xx-input-fix-missing-newlines.patch
queue-3.18/em28xx-audio-fix-missing-newlines.patch
queue-3.18/em28xx-video-fix-missing-newlines.patch
queue-3.18/em28xx-dvb-fix-missing-newlines.patch
queue-3.18/em28xx-ensure-closing-messages-terminate-with-a-newline.patch
queue-3.18/em28xx-audio-fix-missing-newlines-again.patch
queue-3.18/em28xx-core-fix-missing-newlines.patch
--
To unsubscribe from this list: send the line "unsubscribe stable" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html