]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
iio: adc: rtq6056: Correct the sign bit index
authorChiYuan Huang <cy_huang@richtek.com>
Thu, 18 Sep 2025 03:10:59 +0000 (11:10 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 6 Dec 2025 21:24:58 +0000 (06:24 +0900)
commit 9b45744bf09fc2a3287e05287141d6e123c125a7 upstream.

The vshunt/current reported register is a signed 16bit integer. The
sign bit index should be '15', not '16'.

Fixes: 4396f45d211b ("iio: adc: Add rtq6056 support")
Reported-by: Andy Hsu <andy_ya_hsu@wiwynn.com>
Signed-off-by: ChiYuan Huang <cy_huang@richtek.com>
Reviewed-by: David Lechner <dlechner@baylibre.com>
Cc: <Stable@vger.kernel.org>
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/iio/adc/rtq6056.c

index 56ed948a8ae10dc0ea79c524b1a942166f6a43f4..8172ea51c52ed2c97d5bfa54b2c371eb12d87979 100644 (file)
@@ -300,7 +300,7 @@ static int rtq6056_adc_read_channel(struct rtq6056_priv *priv,
                return IIO_VAL_INT;
        case RTQ6056_REG_SHUNTVOLT:
        case RTQ6056_REG_CURRENT:
-               *val = sign_extend32(regval, 16);
+               *val = sign_extend32(regval, 15);
                return IIO_VAL_INT;
        default:
                return -EINVAL;