Skip to content

Commit

Permalink
ARM: S5P: Remove duplicate kdiv calculation
Browse files Browse the repository at this point in the history
Signed-off-by: Jonghwan Choi <jhbird.choi@samsung.com>
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
  • Loading branch information
Jonghwan Choi authored and Kukjin Kim committed Sep 16, 2011
1 parent 0804765 commit 4814115
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion arch/arm/plat-s5p/include/plat/pll.h
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@ static inline unsigned long s5p_get_pll46xx(unsigned long baseclk,
mdiv = (pll_con0 >> PLL46XX_MDIV_SHIFT) & PLL46XX_MDIV_MASK;
pdiv = (pll_con0 >> PLL46XX_PDIV_SHIFT) & PLL46XX_PDIV_MASK;
sdiv = (pll_con0 >> PLL46XX_SDIV_SHIFT) & PLL46XX_SDIV_MASK;
kdiv = pll_con1 & PLL46XX_KDIV_MASK;

if (pll_type == pll_4650c)
kdiv = pll_con1 & PLL4650C_KDIV_MASK;
Expand Down

0 comments on commit 4814115

Please sign in to comment.