3.16.7-ckt8 -stable review patch.  If anyone has any objections, please let me 
know.

------------------

From: Russell King <rmk+ker...@arm.linux.org.uk>

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 <rmk+ker...@arm.linux.org.uk>
Reviewed-by: Frank Schäfer <fschaefer....@googlemail.com>
Signed-off-by: Mauro Carvalho Chehab <mche...@osg.samsung.com>
Signed-off-by: Luis Henriques <luis.henriq...@canonical.com>
---
 drivers/media/usb/em28xx/em28xx-dvb.c | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/drivers/media/usb/em28xx/em28xx-dvb.c 
b/drivers/media/usb/em28xx/em28xx-dvb.c
index fc5ff59e819a..26ada1ae166e 100644
--- a/drivers/media/usb/em28xx/em28xx-dvb.c
+++ b/drivers/media/usb/em28xx/em28xx-dvb.c
@@ -1682,17 +1682,17 @@ static int em28xx_dvb_suspend(struct em28xx *dev)
        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);
                }
        }
 
@@ -1709,19 +1709,19 @@ static int em28xx_dvb_resume(struct em28xx *dev)
        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;
                struct i2c_client *client = dvb->i2c_client_tuner;
 
                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);
                }
                /* remove I2C tuner */
                if (client) {
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to