sigh
[coreboot.git] / src / mainboard / asus / m5a99x-evo / mainboard.c
index 7fa4ee7404753e717de5f9906c3376ce9f5c75d9..b4bc11aca8f2a119f89e9ca0fe1394591cd7931d 100644 (file)
@@ -25,7 +25,7 @@
 #include <cpu/x86/msr.h>
 #include <cpu/amd/mtrr.h>
 #include <device/pci_def.h>
-#include "SBPLATFORM.h"
+#include "SbPlatform.h"
 #include "chip.h"
 
 uint64_t uma_memory_base, uma_memory_size;
@@ -73,13 +73,13 @@ u8 is_dev3_present(void)
 
 
 /*************************************************
-* enable the dedicated function in M5A88-V board.
+* enable the dedicated function in M5A99X-EVO board.
 * This function called early than rs780_enable.
 *************************************************/
-static void m5a88pm_v_enable(device_t dev)
+static void m5a99x_evo_enable(device_t dev)
 {
 
-       printk(BIOS_INFO, "Mainboard ASUS M5A88-V Enable. dev=0x%p\n", dev);
+       printk(BIOS_INFO, "Mainboard ASUS M5A99X-EVO Enable. dev=0x%p\n", dev);
 
 #if (CONFIG_GFXUMA == 1)
        msr_t msr, msr2;
@@ -140,6 +140,6 @@ int add_mainboard_resources(struct lb_memory *mem)
 }
 
 struct chip_operations mainboard_ops = {
-       CHIP_NAME("ASUS M5A88-V Mainboard")
-       .enable_dev = m5a88pm_v_enable,
+       CHIP_NAME("ASUS M5A99X-EVO Mainboard")
+       .enable_dev = m5a99x_evo_enable,
 };