]> git.ipfire.org Git - thirdparty/kernel/linux.git/commit
iio: gyro: mpu3050: Fix irq resource leak
authorEthan Tidmore <ethantidmore06@gmail.com>
Tue, 24 Feb 2026 22:48:16 +0000 (16:48 -0600)
committerJonathan Cameron <Jonathan.Cameron@huawei.com>
Sun, 1 Mar 2026 11:20:11 +0000 (11:20 +0000)
commit4216db1043a3be72ef9c2b7b9f393d7fa72496e6
tree1218683283093fcef27ce8723a97649c4dbdcf41
parentedb11a1aef4011a4b7b22cc3c3396c6fe371f4a6
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: 3904b28efb2c7 ("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>
drivers/iio/gyro/mpu3050-core.c