Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1193557
| From | Vladimir Barinov <vladimir.barinov@cogentembedded.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH v2 0/5] iio: adc: hi8435: Add Holt HI-8435 threshold detector |
| Date | 2015-07-28 01:10 +0200 |
| Message-ID | <pQZGV-7Xq-3@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
Hello, This adds the folowing: - Holt threshold detector driver for HI-8435 chip - Add Holt vendor prefix - Document HI-8435 DT bindings - Add periodic polling functionality to SYSFS trigger - Support triggered events PDF file can be found here: http://www.holtic.com/products/3081-hi-8435.aspx Vladimir Barinov (3): [1/5] iio: adc: hi8435: Holt HI-8435 threshold detector [2/5] dt: Add vendor prefix 'holt' [3/5] dt: Document Holt HI-8435 bindings [4/5] iio: trigger: Add periodic polling to SYSFS trigger [5/5] iio: Support triggered events --- This patchset is against the 'kernel/git/torvalds/linux.git' repo. Documentation/ABI/testing/sysfs-bus-iio-adc-hi8435 | 76 ++ Documentation/ABI/testing/sysfs-bus-iio-trigger-sysfs | 11 Documentation/devicetree/bindings/iio/adc/hi8435.txt | 25 Documentation/devicetree/bindings/vendor-prefixes.txt | 1 drivers/iio/Kconfig | 6 drivers/iio/Makefile | 1 drivers/iio/adc/Kconfig | 11 drivers/iio/adc/Makefile | 1 drivers/iio/adc/hi8435.c | 659 ++++++++++++++++++ drivers/iio/industrialio-core.c | 4 drivers/iio/industrialio-trigger.c | 12 drivers/iio/industrialio-triggered-event.c | 67 + drivers/iio/trigger/iio-trig-sysfs.c | 58 + include/linux/iio/iio.h | 1 include/linux/iio/triggered_event.h | 11 15 files changed, 940 insertions(+), 4 deletions(-) create mode 100644 Documentation/ABI/testing/sysfs-bus-iio-adc-hi8435 create mode 100644 drivers/iio/adc/hi8435.c create mode 100644 Documentation/devicetree/bindings/iio/adc/hi8435.txt create mode 100644 drivers/iio/industrialio-triggered-event.c create mode 100644 include/linux/iio/triggered_event.h -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH v2 0/5] iio: adc: hi8435: Add Holt HI-8435 threshold detector Vladimir Barinov <vladimir.barinov@cogentembedded.com> - 2015-07-28 01:10 +0200
[PATCH v2 1/5] iio: adc: hi8435: Holt HI-8435 threshold detector Vladimir Barinov <vladimir.barinov@cogentembedded.com> - 2015-07-28 01:10 +0200
Re: [PATCH v2 1/5] iio: adc: hi8435: Holt HI-8435 threshold detector Peter Meerwald <pmeerw@pmeerw.net> - 2015-07-28 08:40 +0200
csiph-web