Skip to content

Commit

Permalink
MIPS: ralink: allow NULL clock for clk_get_rate
Browse files Browse the repository at this point in the history
Make the behaviour of clk_get_rate consistent with common clk's
clk_get_rate by accepting NULL clocks as parameter. Some device
drivers rely on this, and will cause an OOPS otherwise.

Fixes: 3f0a06b ("MIPS: ralink: adds clkdev code")
Reported-by: Mathias Kresin <[email protected]>
Signed-off-by: Jonas Gorski <[email protected]>
Cc: John Crispin <[email protected]>
Cc: [email protected]
Cc: [email protected]
Patchwork: https://patchwork.linux-mips.org/patch/16778/
Signed-off-by: Ralf Baechle <[email protected]>
  • Loading branch information
KanjiMonster authored and ralfbaechle committed Sep 6, 2017
1 parent 386787b commit a18097b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions arch/mips/ralink/clk.c
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,9 @@ EXPORT_SYMBOL_GPL(clk_disable);

unsigned long clk_get_rate(struct clk *clk)
{
if (!clk)
return 0;

return clk->rate;
}
EXPORT_SYMBOL_GPL(clk_get_rate);
Expand Down

0 comments on commit a18097b

Please sign in to comment.