···160160 trig->use_count--;161161 if (trig->use_count == 0 && trig->ops && trig->ops->try_reenable)162162 if (trig->ops->try_reenable(trig))163163- /* Missed and interrupt so launch new poll now */163163+ /* Missed an interrupt so launch new poll now */164164 iio_trigger_poll(trig, 0);165165}166166EXPORT_SYMBOL(iio_trigger_notify_done);···193193 * This is not currently handled. Alternative of not enabling trigger unless194194 * the relevant function is in there may be the best option.195195 */196196-/* Worth protecting against double additions?*/196196+/* Worth protecting against double additions? */197197static int iio_trigger_attach_poll_func(struct iio_trigger *trig,198198 struct iio_poll_func *pf)199199{···201201 bool notinuse202202 = bitmap_empty(trig->pool, CONFIG_IIO_CONSUMERS_PER_TRIGGER);203203204204- /* Prevent the module being removed whilst attached to a trigger */204204+ /* Prevent the module from being removed whilst attached to a trigger */205205 __module_get(pf->indio_dev->info->driver_module);206206 pf->irq = iio_trigger_get_irq(trig);207207 ret = request_threaded_irq(pf->irq, pf->h, pf->thread,···288288EXPORT_SYMBOL_GPL(iio_dealloc_pollfunc);289289290290/**291291- * iio_trigger_read_current() - trigger consumer sysfs query which trigger291291+ * iio_trigger_read_current() - trigger consumer sysfs query current trigger292292 *293293 * For trigger consumers the current_trigger interface allows the trigger294294 * used by the device to be queried.···305305}306306307307/**308308- * iio_trigger_write_current() trigger consumer sysfs set current trigger308308+ * iio_trigger_write_current() - trigger consumer sysfs set current trigger309309 *310310 * For trigger consumers the current_trigger interface allows the trigger311311 * used for this device to be specified at run time based on the triggers···476476477477void iio_device_unregister_trigger_consumer(struct iio_dev *indio_dev)478478{479479- /* Clean up and associated but not attached triggers references */479479+ /* Clean up an associated but not attached trigger reference */480480 if (indio_dev->trig)481481 iio_trigger_put(indio_dev->trig);482482}