]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
iio: accel: kxsd9: fix runtime PM imbalance on write_raw() error
authorBiren Pandya <birenpandya@gmail.com>
Sun, 14 Jun 2026 07:15:46 +0000 (12:45 +0530)
committerJonathan Cameron <jic23@kernel.org>
Mon, 29 Jun 2026 22:24:46 +0000 (23:24 +0100)
kxsd9_write_raw() takes a runtime PM reference with pm_runtime_get_sync()
but returns -EINVAL directly when a scale with a non-zero integer part is
requested, skipping the matching pm_runtime_put_autosuspend(). This leaks
a runtime PM usage-counter reference on every such write, after which the
device can no longer autosuspend.

Set the error code and fall through to the existing put instead of
returning early.

Fixes: 9a9a369d6178 ("iio: accel: kxsd9: Deploy system and runtime PM")
Signed-off-by: Biren Pandya <birenpandya@gmail.com>
Assisted-by: Claude:claude-opus-4-8 coccinelle
Cc: <Stable@vger.kernel.org>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
drivers/iio/accel/kxsd9.c

index 4717d80fc24af69f611c270d0587b5a7d8fea426..7ac885d94d7f45edc7f7823165a1ad7fff39f8a7 100644 (file)
@@ -147,8 +147,9 @@ static int kxsd9_write_raw(struct iio_dev *indio_dev,
        if (mask == IIO_CHAN_INFO_SCALE) {
                /* Check no integer component */
                if (val)
-                       return -EINVAL;
-               ret = kxsd9_write_scale(indio_dev, val2);
+                       ret = -EINVAL;
+               else
+                       ret = kxsd9_write_scale(indio_dev, val2);
        }
 
        pm_runtime_put_autosuspend(st->dev);