diff options
Diffstat (limited to 'src/mainboard/asus/m4a785-m/mainboard.c')
-rw-r--r-- | src/mainboard/asus/m4a785-m/mainboard.c | 8 |
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, }; |