diff options
Diffstat (limited to 'drivers/media/video/aptina-pll.c')
-rw-r--r-- | drivers/media/video/aptina-pll.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/media/video/aptina-pll.c b/drivers/media/video/aptina-pll.c index 0bd3813bb59d..8153a449846b 100644 --- a/drivers/media/video/aptina-pll.c +++ b/drivers/media/video/aptina-pll.c | |||
@@ -148,9 +148,8 @@ int aptina_pll_calculate(struct device *dev, | |||
148 | unsigned int mf_high; | 148 | unsigned int mf_high; |
149 | unsigned int mf_low; | 149 | unsigned int mf_low; |
150 | 150 | ||
151 | mf_low = max(roundup(mf_min, mf_inc), | 151 | mf_low = roundup(max(mf_min, DIV_ROUND_UP(pll->ext_clock * p1, |
152 | DIV_ROUND_UP(pll->ext_clock * p1, | 152 | limits->int_clock_max * div)), mf_inc); |
153 | limits->int_clock_max * div)); | ||
154 | mf_high = min(mf_max, pll->ext_clock * p1 / | 153 | mf_high = min(mf_max, pll->ext_clock * p1 / |
155 | (limits->int_clock_min * div)); | 154 | (limits->int_clock_min * div)); |
156 | 155 | ||