diff options
| author | Roberta Dobrescu <[email protected]> | 2014-09-25 20:09:09 +0300 |
|---|---|---|
| committer | Greg Kroah-Hartman <[email protected]> | 2014-09-28 22:20:30 -0400 |
| commit | ad3e646c5b7fcc485a574f4523cb7bf2077ef1a3 (patch) | |
| tree | 36a1adf727e38d1c7b6cd6c0fa29efa1ea470502 | |
| parent | f3f883b411ae77455862a12b1d37e277ce80a4c3 (diff) | |
staging: iio: light: Fix quoted string split across lines
This fixes the following checkpatch.pl warning:
WARNING: quoted string split across lines
Signed-off-by: Roberta Dobrescu <[email protected]>
Acked-by: Daniel Baluta <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
| -rw-r--r-- | drivers/staging/iio/light/isl29018.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/staging/iio/light/isl29018.c b/drivers/staging/iio/light/isl29018.c index f4e3ba08092b..a3489187aeb0 100644 --- a/drivers/staging/iio/light/isl29018.c +++ b/drivers/staging/iio/light/isl29018.c @@ -547,8 +547,8 @@ static int isl29018_chip_init(struct isl29018_chip *chip) */ status = regmap_write(chip->regmap, ISL29018_REG_TEST, 0x0); if (status < 0) { - dev_err(chip->dev, "Failed to clear isl29018 TEST reg." - "(%d)\n", status); + dev_err(chip->dev, "Failed to clear isl29018 TEST reg.(%d)\n", + status); return status; } @@ -558,8 +558,8 @@ static int isl29018_chip_init(struct isl29018_chip *chip) */ status = regmap_write(chip->regmap, ISL29018_REG_ADD_COMMAND1, 0); if (status < 0) { - dev_err(chip->dev, "Failed to clear isl29018 CMD1 reg." - "(%d)\n", status); + dev_err(chip->dev, "Failed to clear isl29018 CMD1 reg.(%d)\n", + status); return status; } |