summaryrefslogtreecommitdiffstats
path: root/drivers/iio/trigger (follow)
Commit message (Collapse)AuthorAgeFilesLines
* iio:trigger:interrupt fix formatting of rsize variable in nameJonathan Cameron2013-06-081-1/+1
| | | | | | | | | | The name includes irq_res->start which of type resource_size_t not integer. We could in theory use %pa for this but then it would be in hex and also that causes a warning about incorrect types anyway. Hence just use the irq local variable we assigned the line above. Reported-by: Fengguang Wu <fengguang.wu@intel.com> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
* iio:triggers:interrupt trigger - move out of staging.Jonathan Cameron2013-06-043-0/+131
| | | | | | | This is now a very simple trigger indeed but useful in many common cases. Signed-off-by: Jonathan Cameron <jic23@kernel.org> Reviewed-by: Lars-Peter Clausen <lars@metafoo.de>
* iio: replace strict_strtoul() with kstrtoul()Jingoo Han2013-06-041-2/+2
| | | | | | | | | The usage of strict_strtoul() is not preferred, because strict_strtoul() is obsolete. Thus, kstrtoul() should be used. Signed-off-by: Jingoo Han <jg1.han@samsung.com> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
* iio:trigger:sysfs Move out of staging.Jonathan Cameron2013-05-223-0/+249
This simple driver is rather useful. No issues about its interface have been raised for some time hence the proposal to move it out of staging. Signed-off-by: Jonathan Cameron <jic23@kernel.org>