Commit 42dd880e authored by Mike Turquette's avatar Mike Turquette

Merge branch 'clk-fixes' into clk-next

parents dedca6ab fe52e750
...@@ -158,7 +158,7 @@ static bool _is_valid_div(struct clk_divider *divider, unsigned int div) ...@@ -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) static int _round_up_table(const struct clk_div_table *table, int div)
{ {
const struct clk_div_table *clkt; const struct clk_div_table *clkt;
int up = _get_table_maxdiv(table); int up = INT_MAX;
for (clkt = table; clkt->div; clkt++) { for (clkt = table; clkt->div; clkt++) {
if (clkt->div == div) if (clkt->div == div)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment