mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-01-18 20:16:16 +07:00
[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:
parent
fbaa48d185
commit
a084c57fc1
@ -1775,17 +1775,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);
|
||||
}
|
||||
}
|
||||
|
||||
@ -1802,18 +1802,18 @@ 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;
|
||||
|
||||
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);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user