[media] em28xx-dvb: fix missing newlines
Inspection shows that newlines are missing from several kernel messages
in em28xx-dvb. Fix these.
Fixes: ca2b46dacb
("[media] em28xx-dvb: 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:

committed by
Mauro Carvalho Chehab

parent
fbaa48d185
commit
a084c57fc1
@@ -1775,17 +1775,17 @@ static int em28xx_dvb_suspend(struct em28xx *dev)
|
|||||||
if (!dev->board.has_dvb)
|
if (!dev->board.has_dvb)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
em28xx_info("Suspending DVB extension");
|
em28xx_info("Suspending DVB extension\n");
|
||||||
if (dev->dvb) {
|
if (dev->dvb) {
|
||||||
struct em28xx_dvb *dvb = dev->dvb;
|
struct em28xx_dvb *dvb = dev->dvb;
|
||||||
|
|
||||||
if (dvb->fe[0]) {
|
if (dvb->fe[0]) {
|
||||||
ret = dvb_frontend_suspend(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]) {
|
if (dvb->fe[1]) {
|
||||||
dvb_frontend_suspend(dvb->fe[1]);
|
dvb_frontend_suspend(dvb->fe[1]);
|
||||||
em28xx_info("fe1 suspend %d", ret);
|
em28xx_info("fe1 suspend %d\n", ret);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1802,18 +1802,18 @@ static int em28xx_dvb_resume(struct em28xx *dev)
|
|||||||
if (!dev->board.has_dvb)
|
if (!dev->board.has_dvb)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
em28xx_info("Resuming DVB extension");
|
em28xx_info("Resuming DVB extension\n");
|
||||||
if (dev->dvb) {
|
if (dev->dvb) {
|
||||||
struct em28xx_dvb *dvb = dev->dvb;
|
struct em28xx_dvb *dvb = dev->dvb;
|
||||||
|
|
||||||
if (dvb->fe[0]) {
|
if (dvb->fe[0]) {
|
||||||
ret = dvb_frontend_resume(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]) {
|
if (dvb->fe[1]) {
|
||||||
ret = dvb_frontend_resume(dvb->fe[1]);
|
ret = dvb_frontend_resume(dvb->fe[1]);
|
||||||
em28xx_info("fe1 resume %d", ret);
|
em28xx_info("fe1 resume %d\n", ret);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user