Use the correct (W83627THF, not W83627HF) superio code in MS-7135 romstage.
authorJonathan Kollasch <jakllsch@kollasch.net>
Tue, 19 Oct 2010 15:17:18 +0000 (15:17 +0000)
committerJonathan A. Kollasch <jakllsch@kollasch.net>
Tue, 19 Oct 2010 15:17:18 +0000 (15:17 +0000)
This is consistent with the device tree and the chip actually on the board.
Trivial.

Signed-off-by: Jonathan Kollasch <jakllsch@kollasch.net>
Acked-by: Jonathan Kollasch <jakllsch@kollasch.net>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5974 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

src/mainboard/msi/ms7135/romstage.c

index 78ac703b654445060c78967b1344d08d62ebe80b..47da5bca44410588dbc0650f65cc44201bd690a2 100644 (file)
@@ -22,7 +22,7 @@
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
  */
 
-#define SERIAL_DEV PNP_DEV(0x4e, W83627HF_SP1)
+#define SERIAL_DEV PNP_DEV(0x4e, W83627THF_SP1)
 
 /* Used by raminit. */
 #define QRANK_DIMM_SUPPORT 1
@@ -41,7 +41,7 @@
 #include <pc80/mc146818rtc.h>
 #include "cpu/x86/lapic/boot_cpu.c"
 #include "northbridge/amd/amdk8/reset_test.c"
-#include "superio/winbond/w83627hf/w83627hf_early_serial.c"
+#include "superio/winbond/w83627thf/w83627thf_early_serial.c"
 
 #include <cpu/amd/model_fxx_rev.h>
 #include <console/console.h>
@@ -135,7 +135,7 @@ void cache_as_ram_main(unsigned long bist, unsigned long cpu_init_detectedx)
                bsp_apicid = init_cpus(cpu_init_detectedx);
        }
 
-       w83627hf_enable_serial(SERIAL_DEV, CONFIG_TTYS0_BASE);
+       w83627thf_enable_serial(SERIAL_DEV, CONFIG_TTYS0_BASE);
        uart_init();
        console_init();