linux-iio.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v4 0/5] staging:iio:hmc5843: Few adjustments and support for hmc5983
@ 2014-07-15 12:24 Josef Gajdusek
  2014-07-15 12:25 ` [PATCH v4 1/5] staging:iio:hmc5843: Added regmap support Josef Gajdusek
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: Josef Gajdusek @ 2014-07-15 12:24 UTC (permalink / raw)
  To: linux-iio; +Cc: devel, gregkh, jic23, linux-kernel, pmeerw, dan.carpenter, lars

This patch series modifies the hmc5843 driver to support the hmc5983 i2c and
spi interfaces.

v2:
	* Reverted the changed order of iio unregister and setting hmc mode to sleep

v3:
	* Fixed bug introduced in the first patch
	* Readded few comment lines which have gone missing in the hmc5843.c ->
	  hmc5843_core.c move

v4: 
    * Changes suggested by Lars in https://lkml.org/lkml/2014/7/14/968
	  * The i2c and spi drivers are now user-selectable with the core driver
	    being selected automatically
	  * The regmap_config structs in both _spi and _i2c files are now static
	  * The iio_dev allocation is now done in the common function
	  * pm ops are now defined in the header file and the same definition is
	    shared between both interface-specific drivers
	* regmap tables in hmc5843.h are not longer static (this fixed bunch of 
	  variable not used warnings)

Jonathan, the patch series applies cleanly against mainline (for me at least), 
maybe you already have some hmc5843 related patches in your tree which are not 
yet in upstream? (probably https://lkml.org/lkml/2014/2/14/312)

Josef Gajdusek (5):
  staging:iio:hmc5843: Added regmap support
  staging:iio:hmc5843: Split hmc5843.c to multiple files
  staging:iio:hmc5843: register <-> value arrays now can have different
    lengths
  staging:iio:hmc5843: Add support for i2c hmc5983
  staging:iio:hmc5843: Add support for spi hmc5983

 drivers/staging/iio/magnetometer/Kconfig        |  30 +-
 drivers/staging/iio/magnetometer/Makefile       |   4 +-
 drivers/staging/iio/magnetometer/hmc5843.c      | 652 ------------------------
 drivers/staging/iio/magnetometer/hmc5843.h      |  86 ++++
 drivers/staging/iio/magnetometer/hmc5843_core.c | 638 +++++++++++++++++++++++
 drivers/staging/iio/magnetometer/hmc5843_i2c.c  |  74 +++
 drivers/staging/iio/magnetometer/hmc5843_spi.c  |  73 +++
 7 files changed, 900 insertions(+), 657 deletions(-)
 delete mode 100644 drivers/staging/iio/magnetometer/hmc5843.c
 create mode 100644 drivers/staging/iio/magnetometer/hmc5843.h
 create mode 100644 drivers/staging/iio/magnetometer/hmc5843_core.c
 create mode 100644 drivers/staging/iio/magnetometer/hmc5843_i2c.c
 create mode 100644 drivers/staging/iio/magnetometer/hmc5843_spi.c

-- 
1.8.5.5

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

end of thread, other threads:[~2014-07-15 17:57 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-07-15 12:24 [PATCH v4 0/5] staging:iio:hmc5843: Few adjustments and support for hmc5983 Josef Gajdusek
2014-07-15 12:25 ` [PATCH v4 1/5] staging:iio:hmc5843: Added regmap support Josef Gajdusek
2014-07-15 12:25 ` [PATCH v4 2/5] staging:iio:hmc5843: Split hmc5843.c to multiple files Josef Gajdusek
2014-07-15 12:26 ` [PATCH v4 3/5] staging:iio:hmc5843: register <-> value arrays now can have different lengths Josef Gajdusek
2014-07-15 12:27 ` [PATCH v4 4/5] staging:iio:hmc5843: Add support for i2c hmc5983 Josef Gajdusek
2014-07-15 12:27 ` [PATCH v4 5/5] staging:iio:hmc5843: Add support for spi hmc5983 Josef Gajdusek
2014-07-15 17:59 ` [PATCH v4 0/5] staging:iio:hmc5843: Few adjustments and support for hmc5983 Jonathan Cameron

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).