Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

iio: dac: ad5360: use int type to store negative error codes

Change the 'ret' variable in ad5360_update_ctrl() from unsigned int to
int, as it needs to store either negative error codes or zero returned
by ad5360_write_unlocked().

Fixes: a3e2940c24d3 ("staging:iio:dac: Add AD5360 driver")
Signed-off-by: Qianfeng Rong <rongqianfeng@vivo.com>
Reviewed-by: Andy Shevchenko <andriy.shevchenko@intel.com>
Link: https://patch.msgid.link/20250901135726.17601-2-rongqianfeng@vivo.com
Cc: <Stable@vger.kernel.org>
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>

authored by

Qianfeng Rong and committed by
Jonathan Cameron
f9381ece 1d8fdabe

+1 -1
+1 -1
drivers/iio/dac/ad5360.c
··· 262 262 unsigned int clr) 263 263 { 264 264 struct ad5360_state *st = iio_priv(indio_dev); 265 - unsigned int ret; 265 + int ret; 266 266 267 267 mutex_lock(&st->lock); 268 268