Skip to content

Commit

Permalink
IDE: palm_bk3710: convert clock usage after clkdev conversion
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Kevin Hilman authored and David S. Miller committed Aug 16, 2009
1 parent 665d66e commit 468b5ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/ide/palm_bk3710.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit 468b5ef

Please sign in to comment.