linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 4/5] iio: add ping sensors to kernel configuration
@ 2019-11-07 13:01 Andreas Klinger
  2019-11-10 17:07 ` Jonathan Cameron
  0 siblings, 1 reply; 2+ messages in thread
From: Andreas Klinger @ 2019-11-07 13:01 UTC (permalink / raw)
  To: robh+dt, jic23, mark.rutland
  Cc: mripard, shawnguo, heiko, icenowy, laurent.pinchart, knaack.h,
	lars, pmeerw, gregkh, christophe.jaillet, tglx, mchehab+samsung,
	davem, paulmck, devicetree, linux-iio, linux-kernel

Add a new configuration variable CONFIG_PING for the newly supported
parallax ping sensors.

Signed-off-by: Andreas Klinger <ak@it-klinger.de>
---
 drivers/iio/proximity/Kconfig  | 15 +++++++++++++++
 drivers/iio/proximity/Makefile |  1 +
 2 files changed, 16 insertions(+)

diff --git a/drivers/iio/proximity/Kconfig b/drivers/iio/proximity/Kconfig
index d53601447da4..37606d400805 100644
--- a/drivers/iio/proximity/Kconfig
+++ b/drivers/iio/proximity/Kconfig
@@ -58,6 +58,21 @@ config MB1232
 	  To compile this driver as a module, choose M here: the
 	  module will be called mb1232.
 
+config PING
+	tristate "Parallax GPIO bitbanged ranger sensors"
+	depends on GPIOLIB
+	help
+	  Say Y here to build a driver for GPIO bitbanged ranger sensors
+	  with just one GPIO for the trigger and echo. This driver can be
+	  used to measure the distance of objects.
+
+	  Actually supported are:
+	  - Parallax PING))) (ultrasonic)
+	  - Parallax LaserPING (time-of-flight)
+
+	  To compile this driver as a module, choose M here: the
+	  module will be called ping.
+
 config RFD77402
 	tristate "RFD77402 ToF sensor"
 	depends on I2C
diff --git a/drivers/iio/proximity/Makefile b/drivers/iio/proximity/Makefile
index 0bb5f9de13d6..c591b019304e 100644
--- a/drivers/iio/proximity/Makefile
+++ b/drivers/iio/proximity/Makefile
@@ -8,6 +8,7 @@ obj-$(CONFIG_AS3935)		+= as3935.o
 obj-$(CONFIG_ISL29501)		+= isl29501.o
 obj-$(CONFIG_LIDAR_LITE_V2)	+= pulsedlight-lidar-lite-v2.o
 obj-$(CONFIG_MB1232)		+= mb1232.o
+obj-$(CONFIG_PING)		+= ping.o
 obj-$(CONFIG_RFD77402)		+= rfd77402.o
 obj-$(CONFIG_SRF04)		+= srf04.o
 obj-$(CONFIG_SRF08)		+= srf08.o
-- 
2.11.0

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

* Re: [PATCH 4/5] iio: add ping sensors to kernel configuration
  2019-11-07 13:01 [PATCH 4/5] iio: add ping sensors to kernel configuration Andreas Klinger
@ 2019-11-10 17:07 ` Jonathan Cameron
  0 siblings, 0 replies; 2+ messages in thread
From: Jonathan Cameron @ 2019-11-10 17:07 UTC (permalink / raw)
  To: Andreas Klinger
  Cc: robh+dt, mark.rutland, mripard, shawnguo, heiko, icenowy,
	laurent.pinchart, knaack.h, lars, pmeerw, gregkh,
	christophe.jaillet, tglx, mchehab+samsung, davem, paulmck,
	devicetree, linux-iio, linux-kernel

On Thu, 7 Nov 2019 14:01:11 +0100
Andreas Klinger <ak@it-klinger.de> wrote:

> Add a new configuration variable CONFIG_PING for the newly supported
> parallax ping sensors.
> 
> Signed-off-by: Andreas Klinger <ak@it-klinger.de>
Merge with patch 3 please.

Thanks,

Jonathan

> ---
>  drivers/iio/proximity/Kconfig  | 15 +++++++++++++++
>  drivers/iio/proximity/Makefile |  1 +
>  2 files changed, 16 insertions(+)
> 
> diff --git a/drivers/iio/proximity/Kconfig b/drivers/iio/proximity/Kconfig
> index d53601447da4..37606d400805 100644
> --- a/drivers/iio/proximity/Kconfig
> +++ b/drivers/iio/proximity/Kconfig
> @@ -58,6 +58,21 @@ config MB1232
>  	  To compile this driver as a module, choose M here: the
>  	  module will be called mb1232.
>  
> +config PING
> +	tristate "Parallax GPIO bitbanged ranger sensors"
> +	depends on GPIOLIB
> +	help
> +	  Say Y here to build a driver for GPIO bitbanged ranger sensors
> +	  with just one GPIO for the trigger and echo. This driver can be
> +	  used to measure the distance of objects.
> +
> +	  Actually supported are:
> +	  - Parallax PING))) (ultrasonic)
> +	  - Parallax LaserPING (time-of-flight)
> +
> +	  To compile this driver as a module, choose M here: the
> +	  module will be called ping.
> +
>  config RFD77402
>  	tristate "RFD77402 ToF sensor"
>  	depends on I2C
> diff --git a/drivers/iio/proximity/Makefile b/drivers/iio/proximity/Makefile
> index 0bb5f9de13d6..c591b019304e 100644
> --- a/drivers/iio/proximity/Makefile
> +++ b/drivers/iio/proximity/Makefile
> @@ -8,6 +8,7 @@ obj-$(CONFIG_AS3935)		+= as3935.o
>  obj-$(CONFIG_ISL29501)		+= isl29501.o
>  obj-$(CONFIG_LIDAR_LITE_V2)	+= pulsedlight-lidar-lite-v2.o
>  obj-$(CONFIG_MB1232)		+= mb1232.o
> +obj-$(CONFIG_PING)		+= ping.o
>  obj-$(CONFIG_RFD77402)		+= rfd77402.o
>  obj-$(CONFIG_SRF04)		+= srf04.o
>  obj-$(CONFIG_SRF08)		+= srf08.o


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

end of thread, other threads:[~2019-11-10 17:07 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-11-07 13:01 [PATCH 4/5] iio: add ping sensors to kernel configuration Andreas Klinger
2019-11-10 17:07 ` 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).