devm_iio_trigger_alloc —
Resource-managed iio_trigger_alloc
struct iio_trigger * devm_iio_trigger_alloc ( | struct device * dev, |
| const char * fmt, | |
...); |
devDevice to allocate iio_trigger for
fmttrigger name format. If it includes format specifiers, the additional arguments following format are formatted and inserted in the resulting string replacing their respective specifiers.
...variable arguments
Managed iio_trigger_alloc. iio_trigger allocated with this function is automatically freed on driver detach.
If an iio_trigger allocated with this function needs to be freed separately,
devm_iio_trigger_free must be used.