OSDN Git Service

iio: st-sensors: Use dev_to_iio_dev() in sysfs callbacks
authorLars-Peter Clausen <lars@metafoo.de>
Wed, 20 Oct 2021 08:53:49 +0000 (10:53 +0200)
committerJonathan Cameron <Jonathan.Cameron@huawei.com>
Wed, 17 Nov 2021 17:51:32 +0000 (17:51 +0000)
commit4498863cad7befbbd14006e033ae84784a33ae53
tree394b2eeeeaef3dee85b3effe506851622ed6f57c
parent8cf524be72fa8205754ed0ddc11a32aaf156c39f
iio: st-sensors: Use dev_to_iio_dev() in sysfs callbacks

Using `dev_get_drvdata()` in IIO sysfs callbacks to get a pointer to the
IIO device is a relic from the very early days of IIO. The IIO core as well
as most other drivers have switched over to using `dev_to_iio_dev()`
instead.

This driver is one of the last few drivers remaining that uses the outdated
idiom, update it. This will allow to eventually update the IIO core to no
longer set the drvdata for the IIO device and free it up for driver usage.

Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
Link: https://lore.kernel.org/r/20211020085349.16178-1-lars@metafoo.de
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
drivers/iio/common/st_sensors/st_sensors_core.c