aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/ide
diff options
context:
space:
mode:
authorKevin Hilman <khilman@deeprootsystems.com>2009-07-06 12:26:16 +0000
committerDavid S. Miller <davem@davemloft.net>2009-08-15 18:55:08 -0700
commit468b5ef8a8f67a780dd5f51410f8c92761b36f06 (patch)
tree38ce6ff69a62edc37eaff33f2b6a6acd89a69d0b /drivers/ide
parentide: fix races in handling of user-space SET XFER commands (diff)
downloadlinux-dev-468b5ef8a8f67a780dd5f51410f8c92761b36f06.tar.xz
linux-dev-468b5ef8a8f67a780dd5f51410f8c92761b36f06.zip
IDE: palm_bk3710: convert clock usage after clkdev conversion
DaVinci core code has converted to the new clkdev API so clock name strings are not needed. Instead, just the a 'struct device' pointer is needed. Signed-off-by: Kevin Hilman <khilman@deeprootsystems.com> Acked-by: Sergei Shtylyov <sshtylyov@ru.mvista.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/ide')
-rw-r--r--drivers/ide/palm_bk3710.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ide/palm_bk3710.c b/drivers/ide/palm_bk3710.c
index 3c1dc0152153..f8eddf05ecb8 100644
--- a/drivers/ide/palm_bk3710.c
+++ b/drivers/ide/palm_bk3710.c
@@ -318,7 +318,7 @@ static int __init palm_bk3710_probe(struct platform_device *pdev)
int i, rc;
struct ide_hw hw, *hws[] = { &hw };
- clk = clk_get(&pdev->dev, "IDECLK");
+ clk = clk_get(&pdev->dev, NULL);
if (IS_ERR(clk))
return -ENODEV;