summaryrefslogtreecommitdiff
path: root/hw/misc/imx_ccm.c
diff options
context:
space:
mode:
authorStefan Weil <sw@weilnetz.de>2013-06-09 22:44:22 +0200
committerPeter Maydell <peter.maydell@linaro.org>2013-06-25 18:42:49 +0100
commitf3c8fac25f119641fd30f2014bfd368a0023769e (patch)
tree3b34f5ee9d7afba4a5738a576f4de89a0284fef4 /hw/misc/imx_ccm.c
parentc23045ded7571f0eaad95920ab00b6bc9c3a91e6 (diff)
downloadqemu-f3c8fac25f119641fd30f2014bfd368a0023769e.tar.gz
i.MX31: Fix PRCS bit test
cppcheck detected a condition which was always false. According to the MCIMX31 Reference Manual, the PRCS bits have to be 01 to select the Frequency Pre-Multiplier (FPM). PRCS uses bits 1 and 2, so we have to test for 2. Signed-off-by: Stefan Weil <sw@weilnetz.de> Signed-off-by: Peter Chubb <peter.chubb@nicta.com.au> Message-id: 1370810662-32320-1-git-send-email-sw@weilnetz.de Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'hw/misc/imx_ccm.c')
-rw-r--r--hw/misc/imx_ccm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/misc/imx_ccm.c b/hw/misc/imx_ccm.c
index c153a24310..427ce5cd1d 100644
--- a/hw/misc/imx_ccm.c
+++ b/hw/misc/imx_ccm.c
@@ -153,7 +153,7 @@ static void update_clocks(IMXCCMState *s)
* approach
*/
- if ((s->ccmr & CCMR_PRCS) == 1) {
+ if ((s->ccmr & CCMR_PRCS) == 2) {
s->pll_refclk_freq = CKIL_FREQ * 1024;
} else {
s->pll_refclk_freq = CKIH_FREQ;