aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/asus/m4a785-m/mainboard.c
diff options
context:
space:
mode:
authorJuhana Helovuo <juhe@iki.fi>2010-12-06 01:11:12 +0000
committerUwe Hermann <uwe@hermann-uwe.de>2010-12-06 01:11:12 +0000
commita8c8490c114f97462a3060ce77777ea546d0bbc4 (patch)
treedd9f6e34354bc1646a42152f520af1fff0f18653 /src/mainboard/asus/m4a785-m/mainboard.c
parent3a4ed157dcd93f845b92fcea272368bdc41d7a11 (diff)
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
Diffstat (limited to 'src/mainboard/asus/m4a785-m/mainboard.c')
-rw-r--r--src/mainboard/asus/m4a785-m/mainboard.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mainboard/asus/m4a785-m/mainboard.c b/src/mainboard/asus/m4a785-m/mainboard.c
index 6c7a0dc1d3..a5a15e84d9 100644
--- a/src/mainboard/asus/m4a785-m/mainboard.c
+++ b/src/mainboard/asus/m4a785-m/mainboard.c
@@ -132,7 +132,7 @@ static void get_ide_dma66(void)
/*
* 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 @@ static void set_thermal_config(void)
}
/*************************************************
-* 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 @@ static void m4a785m_enable(device_t dev)
}
struct chip_operations mainboard_ops = {
- CHIP_NAME("AMD M4A785M Mainboard")
+ CHIP_NAME("ASUS M4A785-M Mainboard")
.enable_dev = m4a785m_enable,
};