On 12/09/2014 08:29 PM, Karol Wrona wrote:
iio kfifo allocate/free gained their devm_ wrappers. Change-Id: I10c19ccd7c01491caf088b3629137425ddccd29c Signed-off-by: Karol Wrona <k.wrona@xxxxxxxxxxx> Suggested-by: Jonathan Cameron <jic23@xxxxxxxxxx>
Looks good to me. [...]
+struct iio_buffer *devm_iio_kfifo_allocate(struct device *dev) +{ + struct iio_buffer **ptr, *r; + + ptr = devres_alloc(devm_iio_kfifo_release, sizeof *ptr, GFP_KERNEL);
But this should be sizeof(*ptr) to compliant with the Linux kernel coding style. [...] -- To unsubscribe from this list: send the line "unsubscribe linux-iio" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html