All the mail mirrored from lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH V2 0/6] iio: TSYS01, TSYS02D, HTU21, MS5637, MS8607 Measurement Specialties driver development
@ 2015-07-30  9:25 Ludovic Tancerel
  2015-07-30  9:25 ` [PATCH V2 1/6] iio: Add meas-spec sensors common part Ludovic Tancerel
                   ` (5 more replies)
  0 siblings, 6 replies; 25+ messages in thread
From: Ludovic Tancerel @ 2015-07-30  9:25 UTC (permalink / raw)
  To: jic23, knaack.h, lars, pmeerw, linux-iio, ludovic.tancerel,
	William.Markezana

This is the resubmission of patches for measurement specialties drivers.
The format of patchset has been moved into several incremental patches as requested, plus the other feedback.
The list of changes are :
        - Split into multiple patches
        - the split of MS8607 into 2 drivers based on htu21 ans ms5637
        - Alignment of units for processed channels
        - Documentation of private ABI
        - kernel-doc for exported functions
        - Other minor changes from feedback

Please have a look,
and thanks a lot for your feedback.

Regards,
Ludovic

revision history
----------------
v2      Split ms8607/Align units/Document private ABI/ kernel-doc ABI
v1      initial post

Ludovic Tancerel (6):
  Add iio: meas-spec sensors common part
  Add iio: tsys01 meas-spec driver support
  Add iio: tsys02d meas-spec driver support
  Add iio: htu21 meas-spec driver support
  Add iio: ms5637 meas-spec driver support
  Add iio: ms8607 meas-spec driver support

 Documentation/ABI/testing/sysfs-bus-iio-meas-spec |  15 +
 drivers/iio/common/Kconfig                        |   1 +
 drivers/iio/common/Makefile                       |   1 +
 drivers/iio/common/ms_sensors/Kconfig             |   6 +
 drivers/iio/common/ms_sensors/Makefile            |   5 +
 drivers/iio/common/ms_sensors/ms_sensors_i2c.c    | 634 ++++++++++++++++++++++
 drivers/iio/common/ms_sensors/ms_sensors_i2c.h    |  54 ++
 drivers/iio/humidity/Kconfig                      |  11 +
 drivers/iio/humidity/Makefile                     |   1 +
 drivers/iio/humidity/htu21.c                      | 254 +++++++++
 drivers/iio/pressure/Kconfig                      |  28 +-
 drivers/iio/pressure/Makefile                     |   1 +
 drivers/iio/pressure/ms5637.c                     | 192 +++++++
 drivers/iio/temperature/Kconfig                   |  22 +
 drivers/iio/temperature/Makefile                  |   2 +
 drivers/iio/temperature/tsys01.c                  | 232 ++++++++
 drivers/iio/temperature/tsys02d.c                 | 193 +++++++
 17 files changed, 1650 insertions(+), 2 deletions(-)
 create mode 100644 Documentation/ABI/testing/sysfs-bus-iio-meas-spec
 create mode 100644 drivers/iio/common/ms_sensors/Kconfig
 create mode 100644 drivers/iio/common/ms_sensors/Makefile
 create mode 100644 drivers/iio/common/ms_sensors/ms_sensors_i2c.c
 create mode 100644 drivers/iio/common/ms_sensors/ms_sensors_i2c.h
 create mode 100644 drivers/iio/humidity/htu21.c
 create mode 100644 drivers/iio/pressure/ms5637.c
 create mode 100644 drivers/iio/temperature/tsys01.c
 create mode 100644 drivers/iio/temperature/tsys02d.c

-- 
2.3.7


^ permalink raw reply	[flat|nested] 25+ messages in thread

end of thread, other threads:[~2015-09-27 16:01 UTC | newest]

Thread overview: 25+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-07-30  9:25 [PATCH V2 0/6] iio: TSYS01, TSYS02D, HTU21, MS5637, MS8607 Measurement Specialties driver development Ludovic Tancerel
2015-07-30  9:25 ` [PATCH V2 1/6] iio: Add meas-spec sensors common part Ludovic Tancerel
2015-08-08 16:58   ` Jonathan Cameron
2015-08-10  7:43     ` Crt Mori
2015-08-10 11:07       ` Crt Mori
2015-08-15 20:09         ` Jonathan Cameron
2015-09-14 12:56           ` ludovic.tancerel
2015-09-20 19:22             ` Jonathan Cameron
2015-09-23 20:55               ` ludovic.tancerel
2015-07-30  9:25 ` [PATCH V2 2/6] iio: Add tsys01 meas-spec driver support Ludovic Tancerel
2015-08-08 17:03   ` Jonathan Cameron
2015-08-08 17:04     ` Jonathan Cameron
2015-07-30  9:25 ` [PATCH V2 3/6] iio: Add tsys02d " Ludovic Tancerel
2015-08-08 17:15   ` Jonathan Cameron
2015-08-09 12:33     ` Guenter Roeck
2015-08-09 20:13       ` Hartmut Knaack
2015-08-09 20:21         ` Guenter Roeck
2015-07-30  9:25 ` [PATCH V2 4/6] iio: Add htu21 " Ludovic Tancerel
2015-08-08 17:17   ` Jonathan Cameron
2015-07-30  9:25 ` [PATCH V2 5/6] iio: Add ms5637 " Ludovic Tancerel
2015-07-30  9:25 ` [PATCH V2 6/6] iio: Add ms8607 " Ludovic Tancerel
2015-08-08 17:22   ` Jonathan Cameron
2015-09-25  9:25     ` ludovic.tancerel
2015-09-25  9:31       ` ludovic.tancerel
2015-09-27 16:01         ` Jonathan Cameron

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.