Commit faa91a7b authored by Dan Murphy's avatar Dan Murphy Committed by Jacek Anaszewski

leds: as3645a: Fix quoted string split warning

Fix a warning for a split quoted string across
lines.

WARNING: quoted string split across lines
459: FILE: drivers/leds/leds-as3645a.c:459:
		dev_err(dev, "AS3645A not detected "
			"(model %d rfu %d)\n", model, rfu);
Signed-off-by: default avatarDan Murphy <dmurphy@ti.com>
Acked-by: default avatarLaurent Pinchart <laurent.pinchart@ideasonboard.com>
Acked-by: default avatarSakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: default avatarJacek Anaszewski <jacek.anaszewski@gmail.com>
parent 9699cb6b
...@@ -455,8 +455,8 @@ static int as3645a_detect(struct as3645a *flash) ...@@ -455,8 +455,8 @@ static int as3645a_detect(struct as3645a *flash)
/* Verify the chip model and version. */ /* Verify the chip model and version. */
if (model != 0x01 || rfu != 0x00) { if (model != 0x01 || rfu != 0x00) {
dev_err(dev, "AS3645A not detected " dev_err(dev, "AS3645A not detected (model %d rfu %d)\n",
"(model %d rfu %d)\n", model, rfu); model, rfu);
return -ENODEV; return -ENODEV;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment