Skip to content

Commit

Permalink
ide: palm_bk3710: test clock rate to avoid division by 0
Browse files Browse the repository at this point in the history
The clk API may return 0 on clk_get_rate, so we should check the result before
using it as a divisor.

Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Wolfram Sang authored and David S. Miller committed Mar 20, 2016
1 parent eccf432 commit 0d7ef45
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions drivers/ide/palm_bk3710.c
Original file line number Diff line number Diff line change
Expand Up @@ -325,6 +325,8 @@ static int __init palm_bk3710_probe(struct platform_device *pdev)

clk_enable(clk);
rate = clk_get_rate(clk);
if (!rate)
return -EINVAL;

/* NOTE: round *down* to meet minimum timings; we count in clocks */
ideclk_period = 1000000000UL / rate;
Expand Down

0 comments on commit 0d7ef45

Please sign in to comment.