public inbox for linux-mmc@vger.kernel.org
 help / color / mirror / Atom feed
From: "Christian Daudt" <csd@broadcom.com>
To: Arnd Bergmann <arnd@arndb.de>
Cc: linux-mmc@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
	Barry Song <Baohua.Song@csr.com>, Chris Ball <cjb@laptop.org>
Subject: Re: [PATCH] mmc: sirf: fix sdhci_pltfm_init sequence
Date: Tue, 11 Jun 2013 15:39:16 -0700	[thread overview]
Message-ID: <51B7A714.7040804@broadcom.com> (raw)
In-Reply-To: <24753444.e6CjWoyOih@wuerfel>

On 13-06-03 03:02 PM, Arnd Bergmann wrote:
> Patch "mmc: sdhci: Add size for caller in init+register" changed the
> interface for sdhci_pltfm_init, while patch "mmc: sdhci-sirf: add mmc
> host sdhci-pltfm based driver for SiRF SoCs" added a new driver
> with the old interface.
>
> This changes the sirf driver to use the new interface, avoiding
> one warning, and simplifying the init sequence. Since we're here
> already, this also adds an error path for failed clk_prepare_enable.
>
> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
> Cc: Christian Daudt <csd@broadcom.com>
> Cc: Barry Song <Baohua.Song@csr.com>
> Cc: Chris Ball <cjb@laptop.org>
> ----
> This needs an Ack from Barry before it can get applied.
>
> diff --git a/drivers/mmc/host/sdhci-sirf.c b/drivers/mmc/host/sdhci-sirf.c
> index 09805af..cc80f26 100644
> --- a/drivers/mmc/host/sdhci-sirf.c
> +++ b/drivers/mmc/host/sdhci-sirf.c
> @@ -24,7 +24,7 @@ struct sdhci_sirf_priv {
>   static unsigned int sdhci_sirf_get_max_clk(struct sdhci_host *host)
>   {
>   	struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
> -	struct sdhci_sirf_priv *priv = pltfm_host->priv;
> +	struct sdhci_sirf_priv *priv = sdhci_pltfm_priv(pltfm_host);
>   	return clk_get_rate(priv->clk);
>   }
>   
> @@ -47,6 +47,8 @@ static int sdhci_sirf_probe(struct platform_device *pdev)
>   	struct sdhci_pltfm_host *pltfm_host;
>   	struct sdhci_sirf_priv *priv;
>   	struct pinctrl *pinctrl;
> +	struct clk *clk;
> +	int gpio_cd;
>   	int ret;
>   
>   	pinctrl = devm_pinctrl_get_select_default(&pdev->dev);
> @@ -55,38 +57,31 @@ static int sdhci_sirf_probe(struct platform_device *pdev)
>   		return PTR_ERR(pinctrl);
>   	}
>   
> -	priv = devm_kzalloc(&pdev->dev, sizeof(struct sdhci_sirf_priv),
> -		GFP_KERNEL);
> -	if (!priv) {
> -		dev_err(&pdev->dev, "unable to allocate private data");
> -		return -ENOMEM;
> -	}
> -
> -	priv->clk = devm_clk_get(&pdev->dev, NULL);
> -	if (IS_ERR(priv->clk)) {
> +	clk = devm_clk_get(&pdev->dev, NULL);
> +	if (IS_ERR(clk)) {
>   		dev_err(&pdev->dev, "unable to get clock");
> -		return PTR_ERR(priv->clk);
> +		return PTR_ERR(clk);
>   	}
>   
> -	if (pdev->dev.of_node) {
> -		priv->gpio_cd = of_get_named_gpio(pdev->dev.of_node,
> -			"cd-gpios", 0);
> -	} else {
> -		priv->gpio_cd = -EINVAL;
> -	}
> +	if (pdev->dev.of_node)
> +		gpio_cd = of_get_named_gpio(pdev->dev.of_node, "cd-gpios", 0);
> +	else
> +		gpio_cd = -EINVAL;
>   
> -	host = sdhci_pltfm_init(pdev, &sdhci_sirf_pdata);
> -	if (IS_ERR(host)) {
> -		ret = PTR_ERR(host);
> -		goto err_sdhci_pltfm_init;
> -	}
> +	host = sdhci_pltfm_init(pdev, &sdhci_sirf_pdata, sizeof(struct sdhci_sirf_priv));
> +	if (IS_ERR(host))
> +		return PTR_ERR(host);
>   
>   	pltfm_host = sdhci_priv(host);
> -	pltfm_host->priv = priv;
> +	priv = sdhci_pltfm_priv(pltfm_host);
> +	priv->clk = clk;
> +	priv->gpio_cd = gpio_cd;
>   
>   	sdhci_get_of_property(pdev);
>   
> -	clk_prepare_enable(priv->clk);
> +	ret = clk_prepare_enable(priv->clk);
> +	if (ret)
> +		goto err_clk_prepare;
>   
>   	ret = sdhci_add_host(host);
>   	if (ret)
> @@ -111,8 +106,8 @@ err_request_cd:
>   	sdhci_remove_host(host, 0);
>   err_sdhci_add:
>   	clk_disable_unprepare(priv->clk);
> +err_clk_prepare:
>   	sdhci_pltfm_free(pdev);
> -err_sdhci_pltfm_init:
>   	return ret;
>   }
>   
> @@ -120,7 +115,7 @@ static int sdhci_sirf_remove(struct platform_device *pdev)
>   {
>   	struct sdhci_host *host = platform_get_drvdata(pdev);
>   	struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
> -	struct sdhci_sirf_priv *priv = pltfm_host->priv;
> +	struct sdhci_sirf_priv *priv = sdhci_pltfm_priv(pltfm_host);
>   
>   	sdhci_pltfm_unregister(pdev);
>   
> @@ -136,7 +131,7 @@ static int sdhci_sirf_suspend(struct device *dev)
>   {
>   	struct sdhci_host *host = dev_get_drvdata(dev);
>   	struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
> -	struct sdhci_sirf_priv *priv = pltfm_host->priv;
> +	struct sdhci_sirf_priv *priv = sdhci_pltfm_priv(pltfm_host);
>   	int ret;
>   
>   	ret = sdhci_suspend_host(host);
> @@ -152,7 +147,7 @@ static int sdhci_sirf_resume(struct device *dev)
>   {
>   	struct sdhci_host *host = dev_get_drvdata(dev);
>   	struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
> -	struct sdhci_sirf_priv *priv = pltfm_host->priv;
> +	struct sdhci_sirf_priv *priv = sdhci_pltfm_priv(pltfm_host);
>   	int ret;
>   
>   	ret = clk_enable(priv->clk);
>
>
Acked-by: Christian Daudt <csd@broadcom.com>



  parent reply	other threads:[~2013-06-11 22:39 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-06-03 22:02 [PATCH] mmc: sirf: fix sdhci_pltfm_init sequence Arnd Bergmann
2013-06-04  3:01 ` Barry Song
2013-06-11 22:39 ` Christian Daudt [this message]
2013-06-27 15:18 ` Chris Ball

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=51B7A714.7040804@broadcom.com \
    --to=csd@broadcom.com \
    --cc=Baohua.Song@csr.com \
    --cc=arnd@arndb.de \
    --cc=cjb@laptop.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-mmc@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