|
@@ -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);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|