public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/3] Replace bmp085 with bmp18x
@ 2012-02-29 19:58 Eric Andersson
  2012-02-29 19:58 ` [PATCH 1/3] drivers/misc: add support for BMP18x pressure sensors Eric Andersson
                   ` (3 more replies)
  0 siblings, 4 replies; 13+ messages in thread
From: Eric Andersson @ 2012-02-29 19:58 UTC (permalink / raw)
  To: linux-kernel
  Cc: arnd, gregkh, christoph.mair, stefan.nilsson, zhengguang.guo,
	peter.moeller, Eric Andersson

Hi,

This patch-set replaces the BMP085 driver with a driver for Bosch Sensortec's new
generation of pressure sensors called BMP18x. These pressure sensors can be
connected on I2C but also on SPI as a variant, so the driver implements both.
Register-wise they are fully compatible with the older BMP085, so the driver will
support those chips as well.

The driver is based on bmp085.c by Christoph Mair.

--
Best regards,
 Eric
  
  http://www.unixphere.com

Eric Andersson (3):
  drivers/misc: add support for BMP18x pressure sensors
  Documentation: add sysfs ABI documentation for bmp18x
  drivers/misc: remove bmp085 driver

 Documentation/ABI/testing/sysfs-i2c-bmp085 |   31 --
 Documentation/ABI/testing/sysfs-i2c-bmp18x |   31 ++
 Documentation/ABI/testing/sysfs-spi-bmp18x |   31 ++
 drivers/misc/Kconfig                       |   40 ++-
 drivers/misc/Makefile                      |    4 +-
 drivers/misc/bmp085.c                      |  483 ---------------------------
 drivers/misc/bmp18x-core.c                 |  500 ++++++++++++++++++++++++++++
 drivers/misc/bmp18x-i2c.c                  |  121 +++++++
 drivers/misc/bmp18x-spi.c                  |  143 ++++++++
 include/linux/i2c/bmp18x.h                 |   65 ++++
 10 files changed, 924 insertions(+), 525 deletions(-)
 delete mode 100644 Documentation/ABI/testing/sysfs-i2c-bmp085
 create mode 100644 Documentation/ABI/testing/sysfs-i2c-bmp18x
 create mode 100644 Documentation/ABI/testing/sysfs-spi-bmp18x
 delete mode 100644 drivers/misc/bmp085.c
 create mode 100644 drivers/misc/bmp18x-core.c
 create mode 100644 drivers/misc/bmp18x-i2c.c
 create mode 100644 drivers/misc/bmp18x-spi.c
 create mode 100644 include/linux/i2c/bmp18x.h

-- 
1.7.3.4


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

end of thread, other threads:[~2012-03-02 17:06 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-02-29 19:58 [PATCH 0/3] Replace bmp085 with bmp18x Eric Andersson
2012-02-29 19:58 ` [PATCH 1/3] drivers/misc: add support for BMP18x pressure sensors Eric Andersson
2012-03-01  0:11   ` Alan Cox
2012-02-29 19:58 ` [PATCH 2/3] Documentation: add sysfs ABI documentation for bmp18x Eric Andersson
2012-02-29 19:58 ` [PATCH 3/3] drivers/misc: remove bmp085 driver Eric Andersson
2012-02-29 20:18 ` [PATCH 0/3] Replace bmp085 with bmp18x Arnd Bergmann
2012-02-29 20:37   ` Nick Bowler
2012-02-29 21:26     ` Arnd Bergmann
2012-03-01 13:19       ` Eric Andersson
2012-02-29 21:19   ` Eric Andersson
2012-02-29 23:52   ` Alan Cox
2012-03-02 16:49     ` Arnd Bergmann
2012-03-02 17:04       ` Greg KH

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox