diff options
author | Russell King <rmk@dyn-67.arm.linux.org.uk> | 2008-11-27 13:39:14 +0100 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2008-11-27 13:39:14 +0100 |
commit | e902be56cbf2a48d96d11d6884767e638d41c712 (patch) | |
tree | e4d79479a1280ad4841005680e37119d6694c3bf /drivers/mtd | |
parent | [ARM] Arrange for platforms to select appropriate CPU support (diff) | |
parent | [ARM] sa1100: match clock by dev_name(dev) (diff) | |
download | linux-e902be56cbf2a48d96d11d6884767e638d41c712.tar.xz linux-e902be56cbf2a48d96d11d6884767e638d41c712.zip |
Merge branches 'core' and 'clks' into devel
Diffstat (limited to 'drivers/mtd')
-rw-r--r-- | drivers/mtd/nand/pxa3xx_nand.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/nand/pxa3xx_nand.c b/drivers/mtd/nand/pxa3xx_nand.c index c0fa9c9edf08..61c922a8356f 100644 --- a/drivers/mtd/nand/pxa3xx_nand.c +++ b/drivers/mtd/nand/pxa3xx_nand.c @@ -1079,7 +1079,7 @@ static int pxa3xx_nand_probe(struct platform_device *pdev) this = &info->nand_chip; mtd->priv = info; - info->clk = clk_get(&pdev->dev, "NANDCLK"); + info->clk = clk_get(&pdev->dev, NULL); if (IS_ERR(info->clk)) { dev_err(&pdev->dev, "failed to get nand clock\n"); ret = PTR_ERR(info->clk); |