public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot-Users] [PATCH] fix incorrect bus clk of 83xx
@ 2006-07-27  9:27 Liu Dave-r63238
  2006-07-27 21:28 ` [U-Boot-Users] Invalid MPC8349EMDS OR0 setting? David Hawkins
  0 siblings, 1 reply; 7+ messages in thread
From: Liu Dave-r63238 @ 2006-07-27  9:27 UTC (permalink / raw)
  To: u-boot

All,

The gd->bus_clk of 83xx should be csb_clk, not libu_clk,
If it don't be changed, will make the timer incorrect.

CHANGELOG:
* fix incorrect gd->bus_clk, it should be csb_clk
  Patch by Dave Liu, 21 July 2006


diff --git a/cpu/mpc83xx/speed.c b/cpu/mpc83xx/speed.c
index ad6b3f6..bc689c1 100644
--- a/cpu/mpc83xx/speed.c
+++ b/cpu/mpc83xx/speed.c
@@ -333,7 +333,7 @@ #endif /* (CFG_HRCW_HIGH | RCWH_PCIHOST)
        gd->pci_clk    = pci_sync_in;

        gd->cpu_clk = gd->core_clk;
-       gd->bus_clk = gd->lbiu_clk;
+       gd->bus_clk = gd->csb_clk;
        return 0;
 }

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

end of thread, other threads:[~2006-07-28 18:41 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-07-27  9:27 [U-Boot-Users] [PATCH] fix incorrect bus clk of 83xx Liu Dave-r63238
2006-07-27 21:28 ` [U-Boot-Users] Invalid MPC8349EMDS OR0 setting? David Hawkins
2006-07-28  5:38   ` Liu Dave-r63238
2006-07-28 10:23   ` Liu Dave-r63238
2006-07-28 18:26     ` David Hawkins
2006-07-28 14:02   ` Ben Warren
2006-07-28 18:41     ` David Hawkins

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