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.

iio: pressure: mprls0025pa: remove error message

Do not print a duplicate error message if devm_request_irq() fails.

Signed-off-by: Petre Rodan <petre.rodan@subdimension.ro>
Suggested-by: Andy Shevchenko <andriy.shevchenko@intel.com>
Reviewed-by: Andy Shevchenko <andriy.shevchenko@intel.com>
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>

authored by

Petre Rodan and committed by
Jonathan Cameron
b0913a44 ff085189

+1 -2
+1 -2
drivers/iio/pressure/mprls0025pa.c
··· 413 413 ret = devm_request_irq(dev, data->irq, mpr_eoc_handler, 0, 414 414 dev_name(dev), data); 415 415 if (ret) 416 - return dev_err_probe(dev, ret, 417 - "request irq %d failed\n", data->irq); 416 + return ret; 418 417 } 419 418 420 419 data->gpiod_reset = devm_gpiod_get_optional(dev, "reset",