Skip to content

Commit

Permalink
Merge branch 'clk-fixes' into clk-next
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike Turquette committed May 23, 2014
2 parents dedca6a + fe52e75 commit 42dd880
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/clk/clk-divider.c
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ static bool _is_valid_div(struct clk_divider *divider, unsigned int div)
static int _round_up_table(const struct clk_div_table *table, int div)
{
const struct clk_div_table *clkt;
int up = _get_table_maxdiv(table);
int up = INT_MAX;

for (clkt = table; clkt->div; clkt++) {
if (clkt->div == div)
Expand Down

0 comments on commit 42dd880

Please sign in to comment.