]> git.ipfire.org Git - thirdparty/linux.git/commit
iio: adc: ad7606: Fix incorrect type for error return variable
authorHaotian Zhang <vulab@iscas.ac.cn>
Wed, 3 Dec 2025 05:08:44 +0000 (13:08 +0800)
committerJonathan Cameron <Jonathan.Cameron@huawei.com>
Sun, 21 Dec 2025 11:14:09 +0000 (11:14 +0000)
commitc5512e016817a150fd6de97fbb3e74aa799ea3c1
treebbeebd906f071efece49d9ba53f025b7beaa8d83
parent6b39824ac4c15783787e6434449772bfb2e31214
iio: adc: ad7606: Fix incorrect type for error return variable

The variable ret is declared as unsigned int but is used to store return
values from functions returning int, which may be negative error codes.

Change ret from unsigned int to int.

Fixes: 849cebf8dc67 ("iio: adc: ad7606: Add iio-backend support")
Signed-off-by: Haotian Zhang <vulab@iscas.ac.cn>
Reviewed-by: Andy Shevchenko <andy@kernel.org>
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
drivers/iio/adc/ad7606_par.c