Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

[media] as3645a: Join string literals back

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>

authored by

Andy Shevchenko and committed by
Mauro Carvalho Chehab
4ac29941 cc95d342

+6 -6
+6 -6
drivers/media/i2c/as3645a.c
··· 294 294 dev_dbg(&client->dev, "Inductor Peak limit fault\n"); 295 295 296 296 if (rval & AS_FAULT_INFO_INDICATOR_LED) 297 - dev_dbg(&client->dev, "Indicator LED fault: " 298 - "Short circuit or open loop\n"); 297 + dev_dbg(&client->dev, 298 + "Indicator LED fault: Short circuit or open loop\n"); 299 299 300 300 dev_dbg(&client->dev, "%u connected LEDs\n", 301 301 rval & AS_FAULT_INFO_LED_AMOUNT ? 2 : 1); ··· 310 310 dev_dbg(&client->dev, "Short circuit fault\n"); 311 311 312 312 if (rval & AS_FAULT_INFO_OVER_VOLTAGE) 313 - dev_dbg(&client->dev, "Over voltage fault: " 314 - "Indicates missing capacitor or open connection\n"); 313 + dev_dbg(&client->dev, 314 + "Over voltage fault: Indicates missing capacitor or open connection\n"); 315 315 316 316 return rval; 317 317 } ··· 583 583 584 584 /* Verify the chip model and version. */ 585 585 if (model != 0x01 || rfu != 0x00) { 586 - dev_err(&client->dev, "AS3645A not detected " 587 - "(model %d rfu %d)\n", model, rfu); 586 + dev_err(&client->dev, 587 + "AS3645A not detected (model %d rfu %d)\n", model, rfu); 588 588 rval = -ENODEV; 589 589 goto power_off; 590 590 }