All of lore.kernel.org
 help / color / mirror / Atom feed
From: Lee Jones <lee.jones@linaro.org>
To: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Cc: Stephen Boyd <sboyd@codeaurora.org>, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v2 2/2] mfd: intel_quark_i2c_gpio: switch to use struct device *
Date: Mon, 21 Mar 2016 11:54:38 +0000	[thread overview]
Message-ID: <20160321115438.GF4140@x1> (raw)
In-Reply-To: <1455871331-93095-2-git-send-email-andriy.shevchenko@linux.intel.com>

On Fri, 19 Feb 2016, Andy Shevchenko wrote:

> There is no need to pass struct pci_dev * to intel_quark_register_i2c_clk() and
> intel_quark_unregister_i2c_clk(). Change the parameter to struct device *. As a
> result store it in the private struct instead of struct pci_dev *.
> 
> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
> ---
>  drivers/mfd/intel_quark_i2c_gpio.c | 22 +++++++++++-----------
>  1 file changed, 11 insertions(+), 11 deletions(-)

Applied, thanks.

> diff --git a/drivers/mfd/intel_quark_i2c_gpio.c b/drivers/mfd/intel_quark_i2c_gpio.c
> index 7450f5d..24c2d29 100644
> --- a/drivers/mfd/intel_quark_i2c_gpio.c
> +++ b/drivers/mfd/intel_quark_i2c_gpio.c
> @@ -53,7 +53,7 @@
>  #define INTEL_QUARK_I2C_CLK_HZ	33000000
>  
>  struct intel_quark_mfd {
> -	struct pci_dev		*pdev;
> +	struct device		*dev;
>  	struct clk		*i2c_clk;
>  	struct clk_lookup	*i2c_clk_lookup;
>  };
> @@ -123,12 +123,12 @@ static const struct pci_device_id intel_quark_mfd_ids[] = {
>  };
>  MODULE_DEVICE_TABLE(pci, intel_quark_mfd_ids);
>  
> -static int intel_quark_register_i2c_clk(struct intel_quark_mfd *quark_mfd)
> +static int intel_quark_register_i2c_clk(struct device *dev)
>  {
> -	struct pci_dev *pdev = quark_mfd->pdev;
> +	struct intel_quark_mfd *quark_mfd = dev_get_drvdata(dev);
>  	struct clk *i2c_clk;
>  
> -	i2c_clk = clk_register_fixed_rate(&pdev->dev,
> +	i2c_clk = clk_register_fixed_rate(dev,
>  					  INTEL_QUARK_I2C_CONTROLLER_CLK, NULL,
>  					  CLK_IS_ROOT, INTEL_QUARK_I2C_CLK_HZ);
>  	if (IS_ERR(i2c_clk))
> @@ -140,16 +140,16 @@ static int intel_quark_register_i2c_clk(struct intel_quark_mfd *quark_mfd)
>  
>  	if (!quark_mfd->i2c_clk_lookup) {
>  		clk_unregister(quark_mfd->i2c_clk);
> -		dev_err(&pdev->dev, "Fixed clk register failed\n");
> +		dev_err(dev, "Fixed clk register failed\n");
>  		return -ENOMEM;
>  	}
>  
>  	return 0;
>  }
>  
> -static void intel_quark_unregister_i2c_clk(struct pci_dev *pdev)
> +static void intel_quark_unregister_i2c_clk(struct device *dev)
>  {
> -	struct intel_quark_mfd *quark_mfd = dev_get_drvdata(&pdev->dev);
> +	struct intel_quark_mfd *quark_mfd = dev_get_drvdata(dev);
>  
>  	if (!quark_mfd->i2c_clk_lookup)
>  		return;
> @@ -248,10 +248,10 @@ static int intel_quark_mfd_probe(struct pci_dev *pdev,
>  	if (!quark_mfd)
>  		return -ENOMEM;
>  
> -	quark_mfd->pdev = pdev;
> +	quark_mfd->dev = &pdev->dev;
>  	dev_set_drvdata(&pdev->dev, quark_mfd);
>  
> -	ret = intel_quark_register_i2c_clk(quark_mfd);
> +	ret = intel_quark_register_i2c_clk(&pdev->dev);
>  	if (ret)
>  		return ret;
>  
> @@ -272,13 +272,13 @@ static int intel_quark_mfd_probe(struct pci_dev *pdev,
>  	return 0;
>  
>  err_unregister_i2c_clk:
> -	intel_quark_unregister_i2c_clk(pdev);
> +	intel_quark_unregister_i2c_clk(&pdev->dev);
>  	return ret;
>  }
>  
>  static void intel_quark_mfd_remove(struct pci_dev *pdev)
>  {
> -	intel_quark_unregister_i2c_clk(pdev);
> +	intel_quark_unregister_i2c_clk(&pdev->dev);
>  	mfd_remove_devices(&pdev->dev);
>  }
>  

-- 
Lee Jones
Linaro STMicroelectronics Landing Team Lead
Linaro.org │ Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog

  reply	other threads:[~2016-03-21 11:54 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-02-19  8:42 [PATCH v2 1/2] mfd: intel_quark_i2c_gpio: remove clock tree on error path Andy Shevchenko
2016-02-19  8:42 ` [PATCH v2 2/2] mfd: intel_quark_i2c_gpio: switch to use struct device * Andy Shevchenko
2016-03-21 11:54   ` Lee Jones [this message]
2016-02-27  0:58 ` [PATCH v2 1/2] mfd: intel_quark_i2c_gpio: remove clock tree on error path Stephen Boyd
2016-02-29 10:16   ` Andy Shevchenko
2016-03-21 11:54   ` Lee Jones
2016-03-21 18:40     ` Stephen Boyd
2016-03-10 11:08 ` Andy Shevchenko
2016-03-16  8:46   ` Lee Jones
2016-03-21 11:54 ` Lee Jones

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=20160321115438.GF4140@x1 \
    --to=lee.jones@linaro.org \
    --cc=andriy.shevchenko@linux.intel.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=sboyd@codeaurora.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.