[media] as102: CodingStyle fixes
authorMauro Carvalho Chehab <m.chehab@samsung.com>
Tue, 12 Aug 2014 21:50:17 +0000 (18:50 -0300)
committerMauro Carvalho Chehab <m.chehab@samsung.com>
Thu, 21 Aug 2014 20:25:29 +0000 (15:25 -0500)
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>
drivers/media/usb/as102/as102_fe.c

index 29a6d38f91a97bb25e441577274133e3804f8805..9596756b38690c0d6b9b72e7ec9f5e71b121d44f 100644 (file)
@@ -137,8 +137,7 @@ static int as102_fe_read_status(struct dvb_frontend *fe, fe_status_t *status)
                                "as10x_cmd_get_demod_stats failed (probably not tuned)\n");
                } else {
                        dev_dbg(&dev->bus_adap.usb_dev->dev,
-                               "demod status: fc: 0x%08x, bad fc: 0x%08x, "
-                               "bytes corrected: 0x%08x , MER: 0x%04x\n",
+                               "demod status: fc: 0x%08x, bad fc: 0x%08x, bytes corrected: 0x%08x , MER: 0x%04x\n",
                                dev->demod_stats.frame_count,
                                dev->demod_stats.bad_frame_count,
                                dev->demod_stats.bytes_fixed_by_rs,
This page took 0.025063 seconds and 5 git commands to generate.