aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMonam Agarwal <monamagarwal123@gmail.com>2014-01-14 07:01:14 -0500
committerMauro Carvalho Chehab <m.chehab@samsung.com>2014-01-15 08:45:38 -0500
commitcaabb840663816efbe41c8eb87fdc133730a9b19 (patch)
tree1ab466802a45c775a837861ac41e5d642a045bbb
parent1d504b649faf9f27de8ee0a5532e29b8d1fb2a02 (diff)
[media] Staging: media: Fix quoted string split across line in as102_fe.c
This patch fixes the following checkpatch.pl issues in as102/as102_fe.c WARNING: quoted string split across lines Signed-off-by: Monam Agarwal <monamagarwal123@gmail.com> Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
-rw-r--r--drivers/staging/media/as102/as102_fe.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/staging/media/as102/as102_fe.c b/drivers/staging/media/as102/as102_fe.c
index 72b2c4813430..426e61c07066 100644
--- a/drivers/staging/media/as102/as102_fe.c
+++ b/drivers/staging/media/as102/as102_fe.c
@@ -141,8 +141,8 @@ static int as102_fe_read_status(struct dvb_frontend *fe, fe_status_t *status)
141 if (as10x_cmd_get_demod_stats(&dev->bus_adap, 141 if (as10x_cmd_get_demod_stats(&dev->bus_adap,
142 (struct as10x_demod_stats *) &dev->demod_stats) < 0) { 142 (struct as10x_demod_stats *) &dev->demod_stats) < 0) {
143 memset(&dev->demod_stats, 0, sizeof(dev->demod_stats)); 143 memset(&dev->demod_stats, 0, sizeof(dev->demod_stats));
144 dprintk(debug, "as10x_cmd_get_demod_stats failed " 144 dprintk(debug,
145 "(probably not tuned)\n"); 145 "as10x_cmd_get_demod_stats failed (probably not tuned)\n");
146 } else { 146 } else {
147 dprintk(debug, 147 dprintk(debug,
148 "demod status: fc: 0x%08x, bad fc: 0x%08x, " 148 "demod status: fc: 0x%08x, bad fc: 0x%08x, "
@@ -555,8 +555,8 @@ static void as102_fe_copy_tune_parameters(struct as10x_tune_args *tune_args,
555 as102_fe_get_code_rate(params->code_rate_LP); 555 as102_fe_get_code_rate(params->code_rate_LP);
556 } 556 }
557 557
558 dprintk(debug, "\thierarchy: 0x%02x " 558 dprintk(debug,
559 "selected: %s code_rate_%s: 0x%02x\n", 559 "\thierarchy: 0x%02x selected: %s code_rate_%s: 0x%02x\n",
560 tune_args->hierarchy, 560 tune_args->hierarchy,
561 tune_args->hier_select == HIER_HIGH_PRIORITY ? 561 tune_args->hier_select == HIER_HIGH_PRIORITY ?
562 "HP" : "LP", 562 "HP" : "LP",