summaryrefslogtreecommitdiff
path: root/include/configs/sequoia.h
diff options
context:
space:
mode:
authorJeffrey Mann <mannj@embeddedplanet.com>2007-05-07 19:42:49 +0200
committerStefan Roese <sr@denx.de>2007-05-07 19:42:49 +0200
commit193b4a3bb3acaddf798da8de0da05d94ba8774ee (patch)
tree71474dd04f5d91e908d326981f16d2dd341a5c00 /include/configs/sequoia.h
parentac4cd59d59c9bf3f89cb7a344abf8184d678f562 (diff)
[PATCH] ppc4xx: Fix CONFIG_SYS_CLK_FREQ definition in Sequoia config file
A '3' got cut off in the formatting of the last patch to automatically change the clock speed of the system clock on sequoia board. Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com> Signed-off-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'include/configs/sequoia.h')
-rw-r--r--include/configs/sequoia.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/sequoia.h b/include/configs/sequoia.h
index b7f79c26e..e1572ba39 100644
--- a/include/configs/sequoia.h
+++ b/include/configs/sequoia.h
@@ -40,7 +40,7 @@
#define CONFIG_4xx 1 /* ... PPC4xx family */
/* Detect Sequoia PLL input clock automatically via CPLD bit */
#define CONFIG_SYS_CLK_FREQ ((in8(CFG_BCSR_BASE + 3) & 0x80) ? \
- 3333333 : 33000000)
+ 33333333 : 33000000)
#define CONFIG_BOARD_EARLY_INIT_F 1 /* Call board_early_init_f */
#define CONFIG_MISC_INIT_R 1 /* Call misc_init_r */