Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1d5c2bb1 authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab
Browse files

[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: default avatarMauro Carvalho Chehab <m.chehab@samsung.com>
parent 1f2563d6
Loading
Loading
Loading
Loading
+1 −2
Original line number Original line Diff line number Diff line
@@ -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");
				"as10x_cmd_get_demod_stats failed (probably not tuned)\n");
		} else {
		} else {
			dev_dbg(&dev->bus_adap.usb_dev->dev,
			dev_dbg(&dev->bus_adap.usb_dev->dev,
				"demod status: fc: 0x%08x, bad fc: 0x%08x, "
				"demod status: fc: 0x%08x, bad fc: 0x%08x, bytes corrected: 0x%08x , MER: 0x%04x\n",
				"bytes corrected: 0x%08x , MER: 0x%04x\n",
				dev->demod_stats.frame_count,
				dev->demod_stats.frame_count,
				dev->demod_stats.bad_frame_count,
				dev->demod_stats.bad_frame_count,
				dev->demod_stats.bytes_fixed_by_rs,
				dev->demod_stats.bytes_fixed_by_rs,