aboutsummaryrefslogtreecommitdiff
path: root/src/cpu
diff options
context:
space:
mode:
authorGreg Watson <jarrah@users.sourceforge.net>2003-09-03 21:30:18 +0000
committerGreg Watson <jarrah@users.sourceforge.net>2003-09-03 21:30:18 +0000
commit481b5688b5f462db7fa0b27b7fdaf8c8f54fc78a (patch)
treeef9acec708f3ea4fa3b9406a9ee9dbc4b5b8bdfd /src/cpu
parentf72ff36e76d0fb990655da8922ee695a0f8afecc (diff)
moved init_timer() to static initialization
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1099 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/cpu')
-rw-r--r--src/cpu/k8/cpufixup.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/cpu/k8/cpufixup.c b/src/cpu/k8/cpufixup.c
index c9979c180b..d5ccfc299d 100644
--- a/src/cpu/k8/cpufixup.c
+++ b/src/cpu/k8/cpufixup.c
@@ -77,6 +77,9 @@ void k8_enable(struct chip *chip, enum chip_pass pass)
switch (pass) {
case CONF_PASS_PRE_CONSOLE:
break;
+ case CONF_PASS_PRE_PCI:
+ init_timer();
+ break;
default:
/* nothing yet */
break;