Linux Samsung SOC development
 help / color / mirror / Atom feed
* [PATCH] clk: samsung: Fix PLL35XX lock time
@ 2013-10-08  6:56 Arun Kumar K
  2013-10-08 16:09 ` Doug Anderson
  0 siblings, 1 reply; 8+ messages in thread
From: Arun Kumar K @ 2013-10-08  6:56 UTC (permalink / raw)
  To: linux-samsung-soc
  Cc: mturquette, kgene.kim, dianders, yadi.brar, arunkk.samsung

PLL35XX lock factor is 250 as per the manual whereas its
wrongly set as 270 now.

Signed-off-by: Arun Kumar K <arun.kk@samsung.com>
---
 drivers/clk/samsung/clk-pll.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/clk/samsung/clk-pll.c b/drivers/clk/samsung/clk-pll.c
index 529e11d..ad84be0 100644
--- a/drivers/clk/samsung/clk-pll.c
+++ b/drivers/clk/samsung/clk-pll.c
@@ -61,8 +61,8 @@ static long samsung_pll_round_rate(struct clk_hw *hw,
 /*
  * PLL35xx Clock Type
  */
-/* Maximum lock time can be 270 * PDIV cycles */
-#define PLL35XX_LOCK_FACTOR	(270)
+/* Maximum lock time can be 250 * PDIV cycles */
+#define PLL35XX_LOCK_FACTOR	(250)
 
 #define PLL35XX_MDIV_MASK       (0x3FF)
 #define PLL35XX_PDIV_MASK       (0x3F)
-- 
1.7.9.5

^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2013-10-15 16:46 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-10-08  6:56 [PATCH] clk: samsung: Fix PLL35XX lock time Arun Kumar K
2013-10-08 16:09 ` Doug Anderson
2013-10-09  3:51   ` Arun Kumar K
2013-10-10  5:20     ` Tomasz Figa
2013-10-11 15:14       ` Doug Anderson
2013-10-12  2:06         ` Tomasz Figa
2013-10-15  4:08           ` Doug Anderson
2013-10-15 16:46             ` Sonny Rao

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