All of lore.kernel.org
 help / color / mirror / Atom feed
From: Daniel Baluta <daniel.baluta@intel.com>
To: Dan Murphy <dmurphy@ti.com>, linux-iio@vger.kernel.org
Cc: jic23@kernel.org
Subject: Re: [RFC Patch 1/3] iio: heart_monitors: Add support for heart rate monitors
Date: Wed, 15 Oct 2014 10:23:56 +0300	[thread overview]
Message-ID: <543E210C.5050707@intel.com> (raw)
In-Reply-To: <1413314032-923-2-git-send-email-dmurphy@ti.com>



On 10/14/2014 10:13 PM, Dan Murphy wrote:
> Add a type for heart rate monitors
> Add the modifier name in beats per minute.
>
> Signed-off-by: Dan Murphy <dmurphy@ti.com>
> ---
>   drivers/iio/industrialio-core.c                    |    2 ++
>   .../staging/iio/Documentation/iio_event_monitor.c  |    2 ++
>   include/linux/iio/types.h                          |    4 +++-
>   3 files changed, 7 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/iio/industrialio-core.c b/drivers/iio/industrialio-core.c
> index af3e76d..d87ca35 100644
> --- a/drivers/iio/industrialio-core.c
> +++ b/drivers/iio/industrialio-core.c
> @@ -70,6 +70,7 @@ static const char * const iio_chan_type_name_spec[] = {
>   	[IIO_CCT] = "cct",
>   	[IIO_PRESSURE] = "pressure",
>   	[IIO_HUMIDITYRELATIVE] = "humidityrelative",
> +	[IIO_HEARTRATE] = "heartrate",
>   };
>
>   static const char * const iio_modifier_names[] = {
> @@ -91,6 +92,7 @@ static const char * const iio_modifier_names[] = {
>   	[IIO_MOD_NORTH_TRUE] = "from_north_true",
>   	[IIO_MOD_NORTH_MAGN_TILT_COMP] = "from_north_magnetic_tilt_comp",
>   	[IIO_MOD_NORTH_TRUE_TILT_COMP] = "from_north_true_tilt_comp",
> +	[IIO_MOD_HEART_BPM] = "heartrate_beats_per_minute",
s/heartrate_beats_per_minute/beats_per_minute

Anyhow, this is not used, consider removing it.

>   };
>
>   /* relies on pairs of these shared then separate */
> diff --git a/drivers/staging/iio/Documentation/iio_event_monitor.c b/drivers/staging/iio/Documentation/iio_event_monitor.c
> index 569d6f8..b06dab7 100644
> --- a/drivers/staging/iio/Documentation/iio_event_monitor.c
> +++ b/drivers/staging/iio/Documentation/iio_event_monitor.c
> @@ -49,6 +49,7 @@ static const char * const iio_chan_type_name_spec[] = {
>   	[IIO_CCT] = "cct",
>   	[IIO_PRESSURE] = "pressure",
>   	[IIO_HUMIDITYRELATIVE] = "humidityrelative",
> +	[IIO_HEARTRATE] = "heartrate"

Add comma after last element.

>   };
>
>   static const char * const iio_ev_type_text[] = {
> @@ -108,6 +109,7 @@ static bool event_is_known(struct iio_event_data *event)
>   	case IIO_CCT:
>   	case IIO_PRESSURE:
>   	case IIO_HUMIDITYRELATIVE:
> +	case IIO_MOD_HEART_BPM:
>   		break;
>   	default:
>   		return false;
> diff --git a/include/linux/iio/types.h b/include/linux/iio/types.h
> index 4a2af8a..50b1456 100644
> --- a/include/linux/iio/types.h
> +++ b/include/linux/iio/types.h
> @@ -30,6 +30,7 @@ enum iio_chan_type {
>   	IIO_CCT,
>   	IIO_PRESSURE,
>   	IIO_HUMIDITYRELATIVE,
> +	IIO_HEARTRATE
Same here.

>   };
>
>   enum iio_modifier {
> @@ -59,7 +60,8 @@ enum iio_modifier {
>   	IIO_MOD_NORTH_MAGN,
>   	IIO_MOD_NORTH_TRUE,
>   	IIO_MOD_NORTH_MAGN_TILT_COMP,
> -	IIO_MOD_NORTH_TRUE_TILT_COMP
> +	IIO_MOD_NORTH_TRUE_TILT_COMP,
> +	IIO_MOD_HEART_BPM

Same here.

>   };
>
>   enum iio_event_type {
>

  reply	other threads:[~2014-10-15  7:19 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-10-14 19:13 RFC Introducing Heart Monitors for IIO Dan Murphy
2014-10-14 19:13 ` [RFC Patch 1/3] iio: heart_monitors: Add support for heart rate monitors Dan Murphy
2014-10-15  7:23   ` Daniel Baluta [this message]
2014-10-15 19:35   ` Jonathan Cameron
2014-10-14 19:13 ` [RFC Patch 2/3] iio: bindings: Add TI afe4403 heart monitor documentation Dan Murphy
2014-10-15  9:52   ` Peter Meerwald
2014-10-14 19:13 ` [RFC Patch 3/3] iio: heart_monitor: Add TI afe4403 heart monitor Dan Murphy
2014-10-15  7:35   ` Daniel Baluta
2014-10-15 17:37     ` Dan Murphy
2014-10-15  9:52   ` Peter Meerwald
2014-10-22 15:36     ` Dan Murphy
2014-10-25 10:13       ` Jonathan Cameron
2014-10-15  7:37 ` RFC Introducing Heart Monitors for IIO Daniel Baluta
2014-10-15 14:37   ` Dan Murphy
2014-10-15 14:43     ` Karol Wrona

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=543E210C.5050707@intel.com \
    --to=daniel.baluta@intel.com \
    --cc=dmurphy@ti.com \
    --cc=jic23@kernel.org \
    --cc=linux-iio@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.