mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH] clk: clk-divider: divider calculation in clk_set_rate needs DIV_ROUND_UP
@ 2014-07-23  7:58 Sascha Hauer
  0 siblings, 0 replies; only message in thread
From: Sascha Hauer @ 2014-07-23  7:58 UTC (permalink / raw)
  To: barebox

To make the resulting rate is always smaller than the desired rate, and
not bigger.

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
---
 drivers/clk/clk-divider.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/clk/clk-divider.c b/drivers/clk/clk-divider.c
index 67783da..506a966 100644
--- a/drivers/clk/clk-divider.c
+++ b/drivers/clk/clk-divider.c
@@ -186,7 +186,7 @@ static int clk_divider_set_rate(struct clk *clk, unsigned long rate,
 		div = clk_divider_bestdiv(clk, rate, &best_parent_rate);
 		clk_set_rate(clk_get_parent(clk), best_parent_rate);
 	} else {
-		div = parent_rate / rate;
+		div = DIV_ROUND_UP(parent_rate, rate);
 	}
 
 	value = _get_val(divider, div);
-- 
2.0.1


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2014-07-23  7:59 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-07-23  7:58 [PATCH] clk: clk-divider: divider calculation in clk_set_rate needs DIV_ROUND_UP Sascha Hauer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox