>> +EXPORT_SYMBOL_GPL(devm_iio_device_alloc); >> + >> +void devm_iio_device_free(struct device *dev, struct iio_dev *iio_dev) >> +{ >> + int rc; >> + >> + rc = devres_release(dev, devm_iio_device_release, >> + devm_iio_device_match, iio_dev); >> + WARN_ON(rc)...