aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/iio/pressure
diff options
context:
space:
mode:
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>2020-03-23 12:41:29 +0200
committerJonathan Cameron <Jonathan.Cameron@huawei.com>2020-04-19 16:56:20 +0100
commit792897ce417f9690cc7e365a4aca9fa3f4cf6c77 (patch)
tree7f0e743b49873631930513eeea391d298ae31c1a /drivers/iio/pressure
parentiio: pressure: bmp280: Drop unneeded explicit castings (diff)
downloadlinux-dev-792897ce417f9690cc7e365a4aca9fa3f4cf6c77.tar.xz
linux-dev-792897ce417f9690cc7e365a4aca9fa3f4cf6c77.zip
iio: pressure: bmp280: Join string literals back
For easy grepping on debug purposes join string literals back in the messages. No functional change. Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Acked-by: Linus Walleij <linus.walleij@linaro.org> Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Diffstat (limited to 'drivers/iio/pressure')
-rw-r--r--drivers/iio/pressure/bmp280-core.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/iio/pressure/bmp280-core.c b/drivers/iio/pressure/bmp280-core.c
index 958d432d9c8f..a33048390118 100644
--- a/drivers/iio/pressure/bmp280-core.c
+++ b/drivers/iio/pressure/bmp280-core.c
@@ -943,8 +943,7 @@ static int bmp085_fetch_eoc_irq(struct device *dev,
irq_trig = irqd_get_trigger_type(irq_get_irq_data(irq));
if (irq_trig != IRQF_TRIGGER_RISING) {
- dev_err(dev, "non-rising trigger given for EOC interrupt, "
- "trying to enforce it\n");
+ dev_err(dev, "non-rising trigger given for EOC interrupt, trying to enforce it\n");
irq_trig = IRQF_TRIGGER_RISING;
}