]> www.infradead.org Git - users/jedix/linux-maple.git/commit
iio: imu: adis16400: make use of the new lock helpers
authorNuno Sa <nuno.sa@analog.com>
Tue, 18 Jun 2024 13:32:09 +0000 (15:32 +0200)
committerJonathan Cameron <Jonathan.Cameron@huawei.com>
Tue, 25 Jun 2024 20:04:50 +0000 (21:04 +0100)
commit9d9dae6ae8ab440835981b209ebe6ba8465b46a4
treee639ad0afa17f79a86d70732d4d2200627e35277
parent8d61d01cdec275719b70295e98e4d45c5f284f29
iio: imu: adis16400: make use of the new lock helpers

Use the new auto cleanup based locks so error paths are simpler.

While at it, removed 'ret' from adis16400_write_raw() by doing

return adis_write_reg_16();

instead of

ret = adis_write_reg_16();
return ret;

Signed-off-by: Nuno Sa <nuno.sa@analog.com>
Link: https://patch.msgid.link/20240618-dev-iio-adis-cleanup-v1-6-bd93ce7845c7@analog.com
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
drivers/iio/imu/adis16400.c