Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=094624fa66758e9f555587c29b23cf5bc67c10fd
Commit:     094624fa66758e9f555587c29b23cf5bc67c10fd
Parent:     16fdad334c5ba055b8eb79a97da561fbdfacd15e
Author:     Josh Boyer <[EMAIL PROTECTED]>
AuthorDate: Sat Oct 20 00:53:10 2007 +1000
Committer:  Josh Boyer <[EMAIL PROTECTED]>
CommitDate: Fri Oct 19 16:18:31 2007 -0500

    [POWERPC] 4xx: Fix timebase clock selection on Walnut
    
    The current bootwrapper fails to set the timebase clock to the CPU clock
    which causes the time to increment incorrectly.  This fixes it by using the
    correct #define for the CPC0_CR1 register.
    
    Signed-off-by: Josh Boyer <[EMAIL PROTECTED]>
---
 arch/powerpc/boot/treeboot-walnut.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/powerpc/boot/treeboot-walnut.c 
b/arch/powerpc/boot/treeboot-walnut.c
index 3adf2d0..6be76b7 100644
--- a/arch/powerpc/boot/treeboot-walnut.c
+++ b/arch/powerpc/boot/treeboot-walnut.c
@@ -57,8 +57,8 @@ void ibm405gp_fixup_clocks(unsigned int sysclk, unsigned int 
ser_clk)
        }
 
        /* setup the timebase clock to tick at the cpu frequency */
-       cpc0_cr1 = cpc0_cr1 & ~ 0x00800000;
-       mtdcr(DCRN_CPC0_CR1, cpc0_cr1);
+       cpc0_cr1 = cpc0_cr1 & ~0x00800000;
+       mtdcr(DCRN_405_CPC0_CR1, cpc0_cr1);
        tb = cpu;
 
        dt_fixup_cpu_clocks(cpu, tb, 0);
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to