Add initial support for the ASUS M4A78-EM.

Signed-off-by: Juhana Helovuo <juhe@iki.fi>
Acked-by: Uwe Hermann <uwe@hermann-uwe.de>



git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6141 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
diff --git a/src/mainboard/asus/m4a785-m/mainboard.c b/src/mainboard/asus/m4a785-m/mainboard.c
index 6c7a0dc..a5a15e8 100644
--- a/src/mainboard/asus/m4a785-m/mainboard.c
+++ b/src/mainboard/asus/m4a785-m/mainboard.c
@@ -132,7 +132,7 @@
 /*
  * justify the dev3 is exist or not
  * NOTE: This just copied from AMD Tilapia code.
- * It is completly unknown it it will work at all for Asus M4A785-A
+ * It is completly unknown it it will work at all for ASUS M4A785-M.
  */
 u8 is_dev3_present(void)
 {
@@ -224,12 +224,12 @@
 }
 
 /*************************************************
-* enable the dedicated function in m4a785m board.
+* enable the dedicated function in this board.
 * This function called early than rs780_enable.
 *************************************************/
 static void m4a785m_enable(device_t dev)
 {
-	printk(BIOS_INFO, "Mainboard M4A785M Enable. dev=0x%p\n", dev);
+	printk(BIOS_INFO, "Mainboard enable. dev=0x%p\n", dev);
 
 #if (CONFIG_GFXUMA == 1)
 	msr_t msr, msr2;
@@ -276,6 +276,6 @@
 }
 
 struct chip_operations mainboard_ops = {
-	CHIP_NAME("AMD M4A785M   Mainboard")
+	CHIP_NAME("ASUS M4A785-M Mainboard")
 	.enable_dev = m4a785m_enable,
 };