iio: proximity: rfd77402: use i2c_client for rfd77402_{init,powerdown}()
authorAlexandru Ardelean <aardelean@deviqon.com>
Wed, 30 Jun 2021 13:16:35 +0000 (16:16 +0300)
committerJonathan Cameron <Jonathan.Cameron@huawei.com>
Sat, 17 Jul 2021 17:49:30 +0000 (18:49 +0100)
commit09d5135b6ffcb243580a4a77f299a0253a94f5e3
treea9a84ec625a28d272faff5447192323ad937d373
parentbb761e722f6dff05b94bdfff8a7209a442f220ff
iio: proximity: rfd77402: use i2c_client for rfd77402_{init,powerdown}()

These 2 functions only do I2C reads/writes and don't require any of the
private data of the driver.

They're also used in the PM suspend/resume part of the driver.

Converting them to take an i2c_client object as parameter simplifies things
a bit (especially in the suspend/resume) as the driver mostly needs the
reference for i2c_client, so no need to jump through hoops to get it from
the private data (as was done in many places).

The rfd77402_measure() function has also been converted to take an
i2c_client object, since it also does only I2C ops.

Signed-off-by: Alexandru Ardelean <aardelean@deviqon.com>
Link: https://lore.kernel.org/r/20210630131636.1563148-1-aardelean@deviqon.com
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
drivers/iio/proximity/rfd77402.c