aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <m.chehab@samsung.com>2014-08-12 17:50:17 -0400
committerMauro Carvalho Chehab <m.chehab@samsung.com>2014-08-21 16:25:29 -0400
commit1d5c2bb1f9ded9af7bb7e4d2b9beeacbfdbc6f2b (patch)
tree1197ace80478078d244cf444478c367f45eb4a60
parent1f2563d68cce0d45b81a47894c135f65f192b1a9 (diff)
[media] as102: CodingStyle fixes
Fix this warning: WARNING: quoted string split across lines 566: FILE: drivers/media/usb/as102/as102_fe.c:141: + "demod status: fc: 0x%08x, bad fc: 0x%08x, " + "bytes corrected: 0x%08x , MER: 0x%04x\n", Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
-rw-r--r--drivers/media/usb/as102/as102_fe.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/media/usb/as102/as102_fe.c b/drivers/media/usb/as102/as102_fe.c
index 29a6d38f91a9..9596756b3869 100644
--- a/drivers/media/usb/as102/as102_fe.c
+++ b/drivers/media/usb/as102/as102_fe.c
@@ -137,8 +137,7 @@ static int as102_fe_read_status(struct dvb_frontend *fe, fe_status_t *status)
137 "as10x_cmd_get_demod_stats failed (probably not tuned)\n"); 137 "as10x_cmd_get_demod_stats failed (probably not tuned)\n");
138 } else { 138 } else {
139 dev_dbg(&dev->bus_adap.usb_dev->dev, 139 dev_dbg(&dev->bus_adap.usb_dev->dev,
140 "demod status: fc: 0x%08x, bad fc: 0x%08x, " 140 "demod status: fc: 0x%08x, bad fc: 0x%08x, bytes corrected: 0x%08x , MER: 0x%04x\n",
141 "bytes corrected: 0x%08x , MER: 0x%04x\n",
142 dev->demod_stats.frame_count, 141 dev->demod_stats.frame_count,
143 dev->demod_stats.bad_frame_count, 142 dev->demod_stats.bad_frame_count,
144 dev->demod_stats.bytes_fixed_by_rs, 143 dev->demod_stats.bytes_fixed_by_rs,