Patchwork Fix VIA C3 and C7 CPUs in kconfig

login
register
about
Submitter Uwe Hermann
Date 2009-10-16 00:12:25
Message ID <20091016001225.GM15511@greenwood>
Download mbox | patch
Permalink /patch/412/
State Accepted
Headers show

Comments

Uwe Hermann - 2009-10-16 00:12:25
See patch.


Uwe.
Peter Stuge - 2009-10-16 00:26:33
Uwe Hermann wrote:
> 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>
Uwe Hermann - 2009-10-16 10:06:36
On Fri, Oct 16, 2009 at 02:26:33AM +0200, Peter Stuge wrote:
> Uwe Hermann wrote:
> > 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>

Thanks, r4785.


Uwe.

Patch

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>

Index: src/cpu/via/model_c3/Makefile.inc
===================================================================
--- src/cpu/via/model_c3/Makefile.inc	(Revision 4780)
+++ src/cpu/via/model_c3/Makefile.inc	(Arbeitskopie)
@@ -8,4 +8,4 @@ 
 subdirs-y += ../../x86/smm
 subdirs-y += ../../intel/microcode
 
-obj-y += model_c3_init.o
+driver-y += model_c3_init.o
Index: src/cpu/via/model_c7/Makefile.inc
===================================================================
--- src/cpu/via/model_c7/Makefile.inc	(Revision 4780)
+++ src/cpu/via/model_c7/Makefile.inc	(Arbeitskopie)
@@ -8,4 +8,4 @@ 
 subdirs-y += ../../x86/smm
 subdirs-y += ../../intel/microcode
 
-obj-y += model_c7_init.o
+driver-y += model_c7_init.o