diff options
author | Russell King <rmk+kernel@arm.linux.org.uk> | 2014-12-20 07:45:46 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@osg.samsung.com> | 2014-12-23 11:46:08 -0500 |
commit | a084c57fc1ccd24ef8e6ca41e75afa745d5dbb98 (patch) | |
tree | 4bc21347f8a6b55c591f65e62749e18f0d4a66c1 /drivers/media/usb/em28xx/em28xx-dvb.c | |
parent | fbaa48d1853002c2e7bcf12c1fdc0f6fb16d1525 (diff) |
[media] em28xx-dvb: fix missing newlines
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")
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>
Diffstat (limited to 'drivers/media/usb/em28xx/em28xx-dvb.c')
-rw-r--r-- | drivers/media/usb/em28xx/em28xx-dvb.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/media/usb/em28xx/em28xx-dvb.c b/drivers/media/usb/em28xx/em28xx-dvb.c index 80c384c390e2..aee70d483264 100644 --- a/drivers/media/usb/em28xx/em28xx-dvb.c +++ b/drivers/media/usb/em28xx/em28xx-dvb.c | |||
@@ -1775,17 +1775,17 @@ static int em28xx_dvb_suspend(struct em28xx *dev) | |||
1775 | if (!dev->board.has_dvb) | 1775 | if (!dev->board.has_dvb) |
1776 | return 0; | 1776 | return 0; |
1777 | 1777 | ||
1778 | em28xx_info("Suspending DVB extension"); | 1778 | em28xx_info("Suspending DVB extension\n"); |
1779 | if (dev->dvb) { | 1779 | if (dev->dvb) { |
1780 | struct em28xx_dvb *dvb = dev->dvb; | 1780 | struct em28xx_dvb *dvb = dev->dvb; |
1781 | 1781 | ||
1782 | if (dvb->fe[0]) { | 1782 | if (dvb->fe[0]) { |
1783 | ret = dvb_frontend_suspend(dvb->fe[0]); | 1783 | ret = dvb_frontend_suspend(dvb->fe[0]); |
1784 | em28xx_info("fe0 suspend %d", ret); | 1784 | em28xx_info("fe0 suspend %d\n", ret); |
1785 | } | 1785 | } |
1786 | if (dvb->fe[1]) { | 1786 | if (dvb->fe[1]) { |
1787 | dvb_frontend_suspend(dvb->fe[1]); | 1787 | dvb_frontend_suspend(dvb->fe[1]); |
1788 | em28xx_info("fe1 suspend %d", ret); | 1788 | em28xx_info("fe1 suspend %d\n", ret); |
1789 | } | 1789 | } |
1790 | } | 1790 | } |
1791 | 1791 | ||
@@ -1802,18 +1802,18 @@ static int em28xx_dvb_resume(struct em28xx *dev) | |||
1802 | if (!dev->board.has_dvb) | 1802 | if (!dev->board.has_dvb) |
1803 | return 0; | 1803 | return 0; |
1804 | 1804 | ||
1805 | em28xx_info("Resuming DVB extension"); | 1805 | em28xx_info("Resuming DVB extension\n"); |
1806 | if (dev->dvb) { | 1806 | if (dev->dvb) { |
1807 | struct em28xx_dvb *dvb = dev->dvb; | 1807 | struct em28xx_dvb *dvb = dev->dvb; |
1808 | 1808 | ||
1809 | if (dvb->fe[0]) { | 1809 | if (dvb->fe[0]) { |
1810 | ret = dvb_frontend_resume(dvb->fe[0]); | 1810 | ret = dvb_frontend_resume(dvb->fe[0]); |
1811 | em28xx_info("fe0 resume %d", ret); | 1811 | em28xx_info("fe0 resume %d\n", ret); |
1812 | } | 1812 | } |
1813 | 1813 | ||
1814 | if (dvb->fe[1]) { | 1814 | if (dvb->fe[1]) { |
1815 | ret = dvb_frontend_resume(dvb->fe[1]); | 1815 | ret = dvb_frontend_resume(dvb->fe[1]); |
1816 | em28xx_info("fe1 resume %d", ret); | 1816 | em28xx_info("fe1 resume %d\n", ret); |
1817 | } | 1817 | } |
1818 | } | 1818 | } |
1819 | 1819 | ||