Skip to content

Commit

Permalink
Merge branch 'pm-core'
Browse files Browse the repository at this point in the history
Merge a generic clock management fix for 4.19-rc2.

* pm-core:
  PM / clk: signedness bug in of_pm_clk_add_clks()
  • Loading branch information
rafaeljw committed Aug 30, 2018
2 parents 757ab15 + 5e2e2f9 commit a0b9c4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/base/power/clock_ops.c
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ EXPORT_SYMBOL_GPL(of_pm_clk_add_clk);
int of_pm_clk_add_clks(struct device *dev)
{
struct clk **clks;
unsigned int i, count;
int i, count;
int ret;

if (!dev || !dev->of_node)
Expand Down

0 comments on commit a0b9c4d

Please sign in to comment.