siemens/sitemp_g1p1: Don't mess with virtual wire settings
authorPatrick Georgi <patrick.georgi@secunet.com>
Thu, 6 Oct 2011 13:24:08 +0000 (15:24 +0200)
committerPatrick Georgi <patrick@georgi-clan.de>
Thu, 13 Oct 2011 09:07:27 +0000 (11:07 +0200)
That function broke SMP on Linux 2.4, now it works.

Change-Id: I4ddd25fef57bed64877959ca96cca68170042bca
Signed-off-by: Patrick Georgi <patrick.georgi@secunet.com>
Reviewed-on: http://review.coreboot.org/243
Tested-by: build bot (Jenkins)
Reviewed-by: Marc Jones <marcj303@gmail.com>
src/mainboard/siemens/sitemp_g1p1/mptable.c

index 958bfc1207383d8264c71ad63f7c83bd3b34a940..0e18fb3d2f5541824751481887db3099c97ea3c6 100644 (file)
@@ -70,6 +70,6 @@ static void *smp_write_config_table(void *v)
 unsigned long write_smp_table(unsigned long addr)
 {
        void *v;
-       v = smp_write_floating_table(addr, 1);
+       v = smp_write_floating_table(addr, 0);
        return (unsigned long)smp_write_config_table(v);
 }