]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/commitdiff
[media] as3645a: Join string literals back
authorAndy Shevchenko <andy.shevchenko@gmail.com>
Sun, 4 Jun 2017 18:29:18 +0000 (15:29 -0300)
committerMauro Carvalho Chehab <mchehab@s-opensource.com>
Tue, 20 Jun 2017 11:18:12 +0000 (08:18 -0300)
There is no need to split long string literals.
Join them back.

No functional change intended.

Signed-off-by: Andy Shevchenko <andy.shevchenko@gmail.com>
Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
drivers/media/i2c/as3645a.c

index b6aeceea985053163722f3b908e077c8e3df25d1..af5db71a0888760d3eef2d2b37552e2d1124505d 100644 (file)
@@ -294,8 +294,8 @@ static int as3645a_read_fault(struct as3645a *flash)
                dev_dbg(&client->dev, "Inductor Peak limit fault\n");
 
        if (rval & AS_FAULT_INFO_INDICATOR_LED)
-               dev_dbg(&client->dev, "Indicator LED fault: "
-                       "Short circuit or open loop\n");
+               dev_dbg(&client->dev,
+                       "Indicator LED fault: Short circuit or open loop\n");
 
        dev_dbg(&client->dev, "%u connected LEDs\n",
                rval & AS_FAULT_INFO_LED_AMOUNT ? 2 : 1);
@@ -310,8 +310,8 @@ static int as3645a_read_fault(struct as3645a *flash)
                dev_dbg(&client->dev, "Short circuit fault\n");
 
        if (rval & AS_FAULT_INFO_OVER_VOLTAGE)
-               dev_dbg(&client->dev, "Over voltage fault: "
-                       "Indicates missing capacitor or open connection\n");
+               dev_dbg(&client->dev,
+                       "Over voltage fault: Indicates missing capacitor or open connection\n");
 
        return rval;
 }
@@ -583,8 +583,8 @@ static int as3645a_registered(struct v4l2_subdev *sd)
 
        /* Verify the chip model and version. */
        if (model != 0x01 || rfu != 0x00) {
-               dev_err(&client->dev, "AS3645A not detected "
-                       "(model %d rfu %d)\n", model, rfu);
+               dev_err(&client->dev,
+                       "AS3645A not detected (model %d rfu %d)\n", model, rfu);
                rval = -ENODEV;
                goto power_off;
        }