diff mbox

NAND: davinci: update clock naming

Message ID 1243641862-1404-1-git-send-email-khilman@deeprootsystems.com
State Accepted
Commit cd24f8c1e7e27a2c6051a9a338d4704a2431dbf0
Headers show

Commit Message

Kevin Hilman May 30, 2009, 12:04 a.m. UTC
DaVinci clock support has been updated in mainline.
Update clock names accordingly.

Signed-off-by: Kevin Hilman <khilman@deeprootsystems.com>
---
 drivers/mtd/nand/davinci_nand.c |    7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

Comments

David Brownell May 30, 2009, 12:28 a.m. UTC | #1
On Friday 29 May 2009, Kevin Hilman wrote:
> DaVinci clock support has been updated in mainline.
> Update clock names accordingly.

... and before 2.6.30-final ships, please.

Acked-by: David Brownell <dbrownell@users.sourceforge.net>


> 
> Signed-off-by: Kevin Hilman <khilman@deeprootsystems.com>
> ---
>  drivers/mtd/nand/davinci_nand.c |    7 ++++---
>  1 files changed, 4 insertions(+), 3 deletions(-)
> 
> diff --git a/drivers/mtd/nand/davinci_nand.c b/drivers/mtd/nand/davinci_nand.c
> index 0119220..02700f7 100644
> --- a/drivers/mtd/nand/davinci_nand.c
> +++ b/drivers/mtd/nand/davinci_nand.c
> @@ -407,16 +407,17 @@ static int __init nand_davinci_probe(struct platform_device *pdev)
>  	}
>  	info->chip.ecc.mode = ecc_mode;
>  
> -	info->clk = clk_get(&pdev->dev, "AEMIFCLK");
> +	info->clk = clk_get(&pdev->dev, "aemif");
>  	if (IS_ERR(info->clk)) {
>  		ret = PTR_ERR(info->clk);
> -		dev_dbg(&pdev->dev, "unable to get AEMIFCLK, err %d\n", ret);
> +		dev_dbg(&pdev->dev, "unable to get AEMIF clock, err %d\n", ret);
>  		goto err_clk;
>  	}
>  
>  	ret = clk_enable(info->clk);
>  	if (ret < 0) {
> -		dev_dbg(&pdev->dev, "unable to enable AEMIFCLK, err %d\n", ret);
> +		dev_dbg(&pdev->dev, "unable to enable AEMIF clock, err %d\n",
> +			ret);
>  		goto err_clk_enable;
>  	}
>  
> -- 
> 1.6.2.2
> 
> 
> _______________________________________________
> Davinci-linux-open-source mailing list
> Davinci-linux-open-source@linux.davincidsp.com
> http://linux.davincidsp.com/mailman/listinfo/davinci-linux-open-source
> 
>
Artem Bityutskiy May 31, 2009, 1:01 p.m. UTC | #2
On Fri, 2009-05-29 at 17:04 -0700, Kevin Hilman wrote:
> DaVinci clock support has been updated in mainline.
> Update clock names accordingly.
> 
> Signed-off-by: Kevin Hilman <khilman@deeprootsystems.com>
> ---
>  drivers/mtd/nand/davinci_nand.c |    7 ++++---
>  1 files changed, 4 insertions(+), 3 deletions(-)

I've taken this to my l2-mtd-2.6.git. Will also ping dwmw2 about
2.6.30 merging of this patch.
David Woodhouse June 6, 2009, 3:32 p.m. UTC | #3
On Fri, 2009-05-29 at 17:28 -0700, David Brownell wrote:
> On Friday 29 May 2009, Kevin Hilman wrote:
> > DaVinci clock support has been updated in mainline.
> > Update clock names accordingly.
> 
> ... and before 2.6.30-final ships, please.

http://git.kernel.org/linus/cd24f8c1
diff mbox

Patch

diff --git a/drivers/mtd/nand/davinci_nand.c b/drivers/mtd/nand/davinci_nand.c
index 0119220..02700f7 100644
--- a/drivers/mtd/nand/davinci_nand.c
+++ b/drivers/mtd/nand/davinci_nand.c
@@ -407,16 +407,17 @@  static int __init nand_davinci_probe(struct platform_device *pdev)
 	}
 	info->chip.ecc.mode = ecc_mode;
 
-	info->clk = clk_get(&pdev->dev, "AEMIFCLK");
+	info->clk = clk_get(&pdev->dev, "aemif");
 	if (IS_ERR(info->clk)) {
 		ret = PTR_ERR(info->clk);
-		dev_dbg(&pdev->dev, "unable to get AEMIFCLK, err %d\n", ret);
+		dev_dbg(&pdev->dev, "unable to get AEMIF clock, err %d\n", ret);
 		goto err_clk;
 	}
 
 	ret = clk_enable(info->clk);
 	if (ret < 0) {
-		dev_dbg(&pdev->dev, "unable to enable AEMIFCLK, err %d\n", ret);
+		dev_dbg(&pdev->dev, "unable to enable AEMIF clock, err %d\n",
+			ret);
 		goto err_clk_enable;
 	}