aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorUwe Hermann <uwe@hermann-uwe.de>2009-10-16 10:06:18 +0000
committerUwe Hermann <uwe@hermann-uwe.de>2009-10-16 10:06:18 +0000
commit776260675a7afda22d81b58350b404850b5f4d31 (patch)
tree71b55421728d4e82a1a8d152ecac16bcb36a16b9 /src
parent709a71a3b636d782675dab92cf090018fc4f89de (diff)
Similar to r4626, change obj-y to driver-y for VIA C3 and C7.
Otherwise the following happens at runtime (tested on VIA pc2500e, C7): Initializing CPU #0 CPU: vendor Centaur device 6a9 CPU: family 06, model 0a, stepping 09 Unknown cpu We also change C3 as it is pretty clear that the same problem occurs there. Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de> Acked-by: Peter Stuge <peter@stuge.se> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4785 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src')
-rw-r--r--src/cpu/via/model_c3/Makefile.inc2
-rw-r--r--src/cpu/via/model_c7/Makefile.inc2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/cpu/via/model_c3/Makefile.inc b/src/cpu/via/model_c3/Makefile.inc
index 4cd19a23c4..eee3b2907b 100644
--- a/src/cpu/via/model_c3/Makefile.inc
+++ b/src/cpu/via/model_c3/Makefile.inc
@@ -8,4 +8,4 @@ subdirs-y += ../../x86/cache
subdirs-y += ../../x86/smm
subdirs-y += ../../intel/microcode
-obj-y += model_c3_init.o
+driver-y += model_c3_init.o
diff --git a/src/cpu/via/model_c7/Makefile.inc b/src/cpu/via/model_c7/Makefile.inc
index e6634c384b..b8f3470a43 100644
--- a/src/cpu/via/model_c7/Makefile.inc
+++ b/src/cpu/via/model_c7/Makefile.inc
@@ -8,4 +8,4 @@ subdirs-y += ../../x86/cache
subdirs-y += ../../x86/smm
subdirs-y += ../../intel/microcode
-obj-y += model_c7_init.o
+driver-y += model_c7_init.o