All of lore.kernel.org
 help / color / mirror / Atom feed
From: Tomi Valkeinen <tomi.valkeinen@ti.com>
To: Archit Taneja <archit@ti.com>
Cc: linux-omap@vger.kernel.org, linux-fbdev@vger.kernel.org
Subject: Re: [PATCH] omapdss: use devm_clk_get()
Date: Wed, 10 Apr 2013 08:13:25 +0000	[thread overview]
Message-ID: <51651F25.3020302@ti.com> (raw)
In-Reply-To: <1365411346-30611-1-git-send-email-archit@ti.com>

[-- Attachment #1: Type: text/plain, Size: 1708 bytes --]

On 2013-04-08 11:55, Archit Taneja wrote:
> Use devm_clk_get() instead of clk_get() for dss, and for outputs hdmi and venc.
> This reduces reduces code and simplifies error handling.
> 
> Signed-off-by: Archit Taneja <archit@ti.com>
> ---
>  drivers/video/omap2/dss/dss.c  |   18 +++---------------
>  drivers/video/omap2/dss/hdmi.c |   16 ++--------------
>  drivers/video/omap2/dss/venc.c |   10 +---------
>  3 files changed, 6 insertions(+), 38 deletions(-)
> 
> diff --git a/drivers/video/omap2/dss/dss.c b/drivers/video/omap2/dss/dss.c
> index 054c2a2..645b3bc 100644
> --- a/drivers/video/omap2/dss/dss.c
> +++ b/drivers/video/omap2/dss/dss.c
> @@ -767,13 +767,11 @@ int dss_dpi_select_source(enum omap_channel channel)
>  static int dss_get_clocks(void)
>  {
>  	struct clk *clk;
> -	int r;
>  
> -	clk = clk_get(&dss.pdev->dev, "fck");
> +	clk = devm_clk_get(&dss.pdev->dev, "fck");
>  	if (IS_ERR(clk)) {
>  		DSSERR("can't get clock fck\n");
> -		r = PTR_ERR(clk);
> -		goto err;
> +		return PTR_ERR(clk);
>  	}
>  
>  	dss.dss_clk = clk;
> @@ -782,8 +780,7 @@ static int dss_get_clocks(void)
>  		clk = clk_get(NULL, dss.feat->clk_name);
>  		if (IS_ERR(clk)) {
>  			DSSERR("Failed to get %s\n", dss.feat->clk_name);
> -			r = PTR_ERR(clk);
> -			goto err;
> +			return PTR_ERR(clk);
>  		}
>  	} else {
>  		clk = NULL;
> @@ -792,21 +789,12 @@ static int dss_get_clocks(void)
>  	dss.dpll4_m4_ck = clk;
>  
>  	return 0;
> -
> -err:
> -	if (dss.dss_clk)
> -		clk_put(dss.dss_clk);
> -	if (dss.dpll4_m4_ck)
> -		clk_put(dss.dpll4_m4_ck);
> -
> -	return r;
>  }

Why didn't you use devm_clk_get for the dpll4_m4_ck clock also?

 Tomi



[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 899 bytes --]

WARNING: multiple messages have this Message-ID (diff)
From: Tomi Valkeinen <tomi.valkeinen@ti.com>
To: Archit Taneja <archit@ti.com>
Cc: linux-omap@vger.kernel.org, linux-fbdev@vger.kernel.org
Subject: Re: [PATCH] omapdss: use devm_clk_get()
Date: Wed, 10 Apr 2013 11:13:25 +0300	[thread overview]
Message-ID: <51651F25.3020302@ti.com> (raw)
In-Reply-To: <1365411346-30611-1-git-send-email-archit@ti.com>

[-- Attachment #1: Type: text/plain, Size: 1708 bytes --]

On 2013-04-08 11:55, Archit Taneja wrote:
> Use devm_clk_get() instead of clk_get() for dss, and for outputs hdmi and venc.
> This reduces reduces code and simplifies error handling.
> 
> Signed-off-by: Archit Taneja <archit@ti.com>
> ---
>  drivers/video/omap2/dss/dss.c  |   18 +++---------------
>  drivers/video/omap2/dss/hdmi.c |   16 ++--------------
>  drivers/video/omap2/dss/venc.c |   10 +---------
>  3 files changed, 6 insertions(+), 38 deletions(-)
> 
> diff --git a/drivers/video/omap2/dss/dss.c b/drivers/video/omap2/dss/dss.c
> index 054c2a2..645b3bc 100644
> --- a/drivers/video/omap2/dss/dss.c
> +++ b/drivers/video/omap2/dss/dss.c
> @@ -767,13 +767,11 @@ int dss_dpi_select_source(enum omap_channel channel)
>  static int dss_get_clocks(void)
>  {
>  	struct clk *clk;
> -	int r;
>  
> -	clk = clk_get(&dss.pdev->dev, "fck");
> +	clk = devm_clk_get(&dss.pdev->dev, "fck");
>  	if (IS_ERR(clk)) {
>  		DSSERR("can't get clock fck\n");
> -		r = PTR_ERR(clk);
> -		goto err;
> +		return PTR_ERR(clk);
>  	}
>  
>  	dss.dss_clk = clk;
> @@ -782,8 +780,7 @@ static int dss_get_clocks(void)
>  		clk = clk_get(NULL, dss.feat->clk_name);
>  		if (IS_ERR(clk)) {
>  			DSSERR("Failed to get %s\n", dss.feat->clk_name);
> -			r = PTR_ERR(clk);
> -			goto err;
> +			return PTR_ERR(clk);
>  		}
>  	} else {
>  		clk = NULL;
> @@ -792,21 +789,12 @@ static int dss_get_clocks(void)
>  	dss.dpll4_m4_ck = clk;
>  
>  	return 0;
> -
> -err:
> -	if (dss.dss_clk)
> -		clk_put(dss.dss_clk);
> -	if (dss.dpll4_m4_ck)
> -		clk_put(dss.dpll4_m4_ck);
> -
> -	return r;
>  }

Why didn't you use devm_clk_get for the dpll4_m4_ck clock also?

 Tomi



[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 899 bytes --]

  reply	other threads:[~2013-04-10  8:13 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-04-08  8:55 [PATCH] omapdss: use devm_clk_get() Archit Taneja
2013-04-08  8:56 ` Archit Taneja
2013-04-10  8:13 ` Tomi Valkeinen [this message]
2013-04-10  8:13   ` Tomi Valkeinen
2013-04-10  8:37   ` Archit Taneja
2013-04-10  8:49     ` Archit Taneja
2013-04-10  9:19     ` Tomi Valkeinen
2013-04-10  9:19       ` Tomi Valkeinen
2013-04-10  9:28       ` Archit Taneja
2013-04-10  9:40         ` Archit Taneja
2013-04-10  9:29         ` Archit Taneja
2013-04-10  9:41           ` Archit Taneja
2013-04-10  9:32         ` Tomi Valkeinen
2013-04-10  9:32           ` Tomi Valkeinen

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=51651F25.3020302@ti.com \
    --to=tomi.valkeinen@ti.com \
    --cc=archit@ti.com \
    --cc=linux-fbdev@vger.kernel.org \
    --cc=linux-omap@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.