On Sun, 4 Nov 2018 20:24:56 +0530 Himanshu Jha <himanshujha199640@xxxxxxxxx> wrote: > On Sun, Nov 04, 2018 at 11:49:00AM +0100, Slawomir Stepien wrote: > > devm_* APIs are device managed and make code simpler. > > > > Signed-off-by: Slawomir Stepien <sst@xxxxxxxxx> > > --- > > [] > > > Since v4: > > * on devm_add_action fail, call the action on error handling > > For such a use case, `devm_add_action_or_reset()` seems like a better > candidate. Cool. Somehow I'd missed the existence of that. Always thought such a function would be handy but never actually checked if there was one ;) Doh and thanks for the pointer. Easy task for anyone who wants it is to see where else this is directly applicable in IIO drivers. The odd bit here is that I'm not entirely sure what 'power up' action this power down is undoing, so not sure where exactly it should be. It may just be a catch all for the device being left powered up after a read sometime earlier. If that's the case I would suggest a comment making that clear and do it only just before the devm_iio_device_register (as we don't power up anywhere in probe that I can see and this is the point at which a power up 'might' occur as the interfaces are exposed. Jonathan Jonathan > > > + ret = devm_add_action(&spi->dev, ad7280_sw_power_down, st); > > + if (ret) { > > + ad7280_sw_power_down(st); > > + return ret; > > + } > > Also, you can suppress the `1/1` in sunject [PATCH v5 1/1] by passing > `-N` flag to `git format-patch`. > >