On Sun, 11 Apr 2021 15:21:20 +0100 Jonathan Cameron <jic23@xxxxxxxxxx> wrote: > On Thu, 8 Apr 2021 19:38:09 +0800 > Yicong Yang <yangyicong@xxxxxxxxxxxxx> wrote: > > > Some devm variants are implemented with devres_alloc() and devres_add() > > manually to only manage a single pointer. This can be simplified with > > devm_add_action_or_reset() which works the same. Simplify these functions. > > > > Yicong Yang (7): > > iio: adc: adi-axi-adc: simplify devm_adi_axi_adc_conv_register > > iio: buffer-dmaengine: simplify __devm_iio_dmaengine_buffer_free > > iio: hw_consumer: simplify devm_iio_hw_consumer_alloc > > iio: triggered-buffer: simplify devm_iio_triggered_buffer_setup_ext > > iio: core: simplify some devm functions > > iio: trigger: simplify __devm_iio_trigger_register > > iio: inkern: simplify some devm functions > > Nice set. Note no rush for a v2 as IIO is effectively closed for the > coming merge window. Hence these won't hit linux-next now until after > the merge window closes. On second thoughts was just easier for me to make the minor tweaks and apply so I did that. All applied to the togreg branch of iio.git and pushed out as testing for autobuilders etc to poke at. Thanks, Jonathan > > Thanks, > > Jonathan > > > > > drivers/iio/adc/adi-axi-adc.c | 22 ++++---- > > drivers/iio/buffer/industrialio-buffer-dmaengine.c | 22 ++++---- > > drivers/iio/buffer/industrialio-hw-consumer.c | 25 ++++----- > > drivers/iio/buffer/industrialio-triggered-buffer.c | 19 ++----- > > drivers/iio/industrialio-core.c | 43 ++++++--------- > > drivers/iio/industrialio-trigger.c | 18 ++----- > > drivers/iio/inkern.c | 61 ++++++++-------------- > > 7 files changed, 78 insertions(+), 132 deletions(-) > > >