X-Git-Url: http://wien.tomnetworks.com/gitweb/?p=coreboot.git;a=blobdiff_plain;f=src%2Fmainboard%2Fasus%2Fm5a99x-evo%2Fmainboard.c;h=d6c3a5b615c25dcd2b15da212437cbbcfd038e95;hp=7fa4ee7404753e717de5f9906c3376ce9f5c75d9;hb=998ef7e66534a1e50df025cc5f57428649326352;hpb=d85ae17837d9ed66462a87e1d7720c97c1a357bc diff --git a/src/mainboard/asus/m5a99x-evo/mainboard.c b/src/mainboard/asus/m5a99x-evo/mainboard.c index 7fa4ee740..d6c3a5b61 100644 --- a/src/mainboard/asus/m5a99x-evo/mainboard.c +++ b/src/mainboard/asus/m5a99x-evo/mainboard.c @@ -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, };