Linux IIO development
 help / color / mirror / Atom feed
From: Jonathan Cameron <jic23@kernel.org>
To: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Cc: Jonathan Cameron <Jonathan.Cameron@huawei.com>,
	linux-iio@vger.kernel.org, linux-kernel@vger.kernel.org,
	Linus Walleij <linus.walleij@linaro.org>,
	Lars-Peter Clausen <lars@metafoo.de>
Subject: Re: [PATCH v1 1/1] iio: gyro: mpu3050: Make use of device properties
Date: Sat, 16 Apr 2022 12:18:40 +0100	[thread overview]
Message-ID: <20220416121840.0a75d721@jic23-huawei> (raw)
In-Reply-To: <20220413163004.84789-1-andriy.shevchenko@linux.intel.com>

On Wed, 13 Apr 2022 19:30:04 +0300
Andy Shevchenko <andriy.shevchenko@linux.intel.com> wrote:

> Convert the module to be property provider agnostic and allow
> it to be used on non-OF platforms.
> 
> While at it, reuse temporary device pointer in the same function.
> 
> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Applied. Thanks,

Jonathan

> ---
>  drivers/iio/gyro/mpu3050-core.c | 10 +++++-----
>  1 file changed, 5 insertions(+), 5 deletions(-)
> 
> diff --git a/drivers/iio/gyro/mpu3050-core.c b/drivers/iio/gyro/mpu3050-core.c
> index ea387efab62d..a2dafdb64692 100644
> --- a/drivers/iio/gyro/mpu3050-core.c
> +++ b/drivers/iio/gyro/mpu3050-core.c
> @@ -26,6 +26,7 @@
>  #include <linux/interrupt.h>
>  #include <linux/module.h>
>  #include <linux/pm_runtime.h>
> +#include <linux/property.h>
>  #include <linux/random.h>
>  #include <linux/slab.h>
>  
> @@ -1050,6 +1051,7 @@ static const struct iio_trigger_ops mpu3050_trigger_ops = {
>  static int mpu3050_trigger_probe(struct iio_dev *indio_dev, int irq)
>  {
>  	struct mpu3050 *mpu3050 = iio_priv(indio_dev);
> +	struct device *dev = mpu3050->dev;
>  	unsigned long irq_trig;
>  	int ret;
>  
> @@ -1061,8 +1063,7 @@ static int mpu3050_trigger_probe(struct iio_dev *indio_dev, int irq)
>  		return -ENOMEM;
>  
>  	/* Check if IRQ is open drain */
> -	if (of_property_read_bool(mpu3050->dev->of_node, "drive-open-drain"))
> -		mpu3050->irq_opendrain = true;
> +	mpu3050->irq_opendrain = device_property_read_bool(dev, "drive-open-drain");
>  
>  	irq_trig = irqd_get_trigger_type(irq_get_irq_data(irq));
>  	/*
> @@ -1118,13 +1119,12 @@ static int mpu3050_trigger_probe(struct iio_dev *indio_dev, int irq)
>  				   mpu3050->trig->name,
>  				   mpu3050->trig);
>  	if (ret) {
> -		dev_err(mpu3050->dev,
> -			"can't get IRQ %d, error %d\n", irq, ret);
> +		dev_err(dev, "can't get IRQ %d, error %d\n", irq, ret);
>  		return ret;
>  	}
>  
>  	mpu3050->irq = irq;
> -	mpu3050->trig->dev.parent = mpu3050->dev;
> +	mpu3050->trig->dev.parent = dev;
>  	mpu3050->trig->ops = &mpu3050_trigger_ops;
>  	iio_trigger_set_drvdata(mpu3050->trig, indio_dev);
>  


  reply	other threads:[~2022-04-16 11:10 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-04-13 16:30 [PATCH v1 1/1] iio: gyro: mpu3050: Make use of device properties Andy Shevchenko
2022-04-16 11:18 ` Jonathan Cameron [this message]
2022-04-17 13:51 ` Linus Walleij
2022-04-24 17:24   ` Jonathan Cameron

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=20220416121840.0a75d721@jic23-huawei \
    --to=jic23@kernel.org \
    --cc=Jonathan.Cameron@huawei.com \
    --cc=andriy.shevchenko@linux.intel.com \
    --cc=lars@metafoo.de \
    --cc=linus.walleij@linaro.org \
    --cc=linux-iio@vger.kernel.org \
    --cc=linux-kernel@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox