iio: magn: st_magn: use devm_iio_triggered_buffer_setup() for buffer
authorAlexandru Ardelean <aardelean@deviqon.com>
Tue, 20 Jul 2021 07:46:41 +0000 (10:46 +0300)
committerJonathan Cameron <Jonathan.Cameron@huawei.com>
Sat, 24 Jul 2021 15:35:05 +0000 (16:35 +0100)
commit899f6791469f658d395199c33997391cdd53fa5e
tree105ab5747f5f94cb15e83fb1d2209bfb7519bd18
parenta442673b40f22be1d7ce7bfb9626461638a638da
iio: magn: st_magn: use devm_iio_triggered_buffer_setup() for buffer

The st_magn_allocate_ring() function calls iio_triggered_buffer_setup() to
allocate a triggered buffer.

But the same can be done with devm_iio_triggered_buffer_setup() and then
the st_magn_common_remove() no longer needs to manually deallocate it.

We know that the parent of the IIO device is used to manage other instances
of the devm unwind, so it can be used in the st_magn_allocate_ring() as
well.

This change also removes some omitted st_magn_{probe,remove}_trigger()
inline hooks.

Signed-off-by: Alexandru Ardelean <aardelean@deviqon.com>
Link: https://lore.kernel.org/r/20210720074642.223293-3-aardelean@deviqon.com
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
drivers/iio/magnetometer/st_magn.h
drivers/iio/magnetometer/st_magn_buffer.c
drivers/iio/magnetometer/st_magn_core.c