On 19/02/16 19:18, Gregor Boirie wrote: > From: Grégor Boirie <gregor.boirie@xxxxxxxxxx> > > Signed-off-by: Gregor Boirie <gregor.boirie@xxxxxxxxxx> Snag here is that iio_interrupt_trigger is a very linux specific name and device tree bindings should be just about the hardware. Not entirely sure how we avoid this though as the use is rather hard to describe generically. cc'd device tree list and bindings maintainers. As a brief summary - this IIO trigger driver takes a generic interrupt (from whatever) and uses it to drive sampling of IIO devices. The interrupt might be associated with particularly simple sensors directly but is more commonly a gpio interrupt line used cause samples to be captured from unrelated devices. Sometimes the source of that interrupt can be a convoluted external mux setup over which linux has no control for example. Any suggestions on appropriate naming? We aren't really describing hardware here, rather a policy decision on what a given interrupt is to be used for. I suppose ultimately we could take the view this should be handled via another route (from userspace via an appropriate configfs interface for example). Jonathan > --- > drivers/iio/trigger/iio-trig-interrupt.c | 11 ++++++++++- > 1 file changed, 10 insertions(+), 1 deletion(-) > > diff --git a/drivers/iio/trigger/iio-trig-interrupt.c b/drivers/iio/trigger/iio-trig-interrupt.c > index 572bc6f..3c4e18f 100644 > --- a/drivers/iio/trigger/iio-trig-interrupt.c > +++ b/drivers/iio/trigger/iio-trig-interrupt.c > @@ -104,11 +104,20 @@ static int iio_interrupt_trigger_remove(struct platform_device *pdev) > return 0; > } > > +#if defined(CONFIG_OF) > +static const struct of_device_id iio_interrupt_trigger_of_match[] = { > + { .compatible = "iio-interrupt-trigger" }, > + {} > +}; > +#endif > + > static struct platform_driver iio_interrupt_trigger_driver = { > .probe = iio_interrupt_trigger_probe, > .remove = iio_interrupt_trigger_remove, > .driver = { > - .name = "iio_interrupt_trigger", > + .name = "iio_interrupt_trigger", > + .owner = THIS_MODULE, > + .of_match_table = of_match_ptr(iio_interrupt_trigger_of_match) > }, > }; > > -- 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