]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
[media] tuner-core: don't break long lines
authorMauro Carvalho Chehab <mchehab@s-opensource.com>
Wed, 12 Oct 2016 11:18:35 +0000 (08:18 -0300)
committerMauro Carvalho Chehab <mchehab@s-opensource.com>
Fri, 21 Oct 2016 10:39:09 +0000 (08:39 -0200)
Due to the 80-cols checkpatch warnings, several strings
were broken into multiple lines. This is not considered
a good practice anymore, as it makes harder to grep for
strings at the source code. So, join those continuation
lines.

Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
drivers/media/v4l2-core/tuner-core.c

index 731487be5baa993147206ec8f85242cd20dbbc91..e2613ecb7605661602b195a0c21c296a2911550a 100644 (file)
@@ -503,8 +503,7 @@ static int tuner_s_type_addr(struct v4l2_subdev *sd,
                set_type(c, tun_setup->type, tun_setup->mode_mask,
                         tun_setup->config, tun_setup->tuner_callback);
        } else
-               tuner_dbg("set addr discarded for type %i, mask %x. "
-                         "Asked to change tuner at addr 0x%02x, with mask %x\n",
+               tuner_dbg("set addr discarded for type %i, mask %x. Asked to change tuner at addr 0x%02x, with mask %x\n",
                          t->type, t->mode_mask,
                          tun_setup->addr, tun_setup->mode_mask);
 
@@ -809,8 +808,8 @@ static int set_mode(struct tuner *t, enum v4l2_tuner_type mode)
 
        if (mode != t->mode) {
                if (check_mode(t, mode) == -EINVAL) {
-                       tuner_dbg("Tuner doesn't support mode %d. "
-                                 "Putting tuner to sleep\n", mode);
+                       tuner_dbg("Tuner doesn't support mode %d. Putting tuner to sleep\n",
+                                 mode);
                        t->standby = true;
                        if (analog_ops->standby)
                                analog_ops->standby(&t->fe);