mirror of
https://github.com/torvalds/linux.git
synced 2026-05-26 16:12:59 +02:00
iio: gyro: mpu3050: Fix irq resource leak
The interrupt handler is setup but only a few lines down if
iio_trigger_register() fails the function returns without properly
releasing the handler.
Add cleanup goto to resolve resource leak.
Detected by Smatch:
drivers/iio/gyro/mpu3050-core.c:1128 mpu3050_trigger_probe() warn:
'irq' from request_threaded_irq() not released on lines: 1124.
Fixes: 3904b28efb ("iio: gyro: Add driver for the MPU-3050 gyroscope")
Reviewed-by: Linus Walleij <linusw@kernel.org>
Signed-off-by: Ethan Tidmore <ethantidmore06@gmail.com>
Reviewed-by: Andy Shevchenko <andriy.shevchenko@intel.com>
Cc: <Stable@vger.kernel.org>
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
This commit is contained in:
parent
edb11a1aef
commit
4216db1043
|
|
@ -1129,11 +1129,16 @@ static int mpu3050_trigger_probe(struct iio_dev *indio_dev, int irq)
|
|||
|
||||
ret = iio_trigger_register(mpu3050->trig);
|
||||
if (ret)
|
||||
return ret;
|
||||
goto err_iio_trigger;
|
||||
|
||||
indio_dev->trig = iio_trigger_get(mpu3050->trig);
|
||||
|
||||
return 0;
|
||||
|
||||
err_iio_trigger:
|
||||
free_irq(mpu3050->irq, mpu3050->trig);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
int mpu3050_common_probe(struct device *dev,
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user