Family 10: Update for string portability

Update function messages to be more portable by using
the __func__ compiler command instead of hard coded
function names.

Change-Id: Idf479980e427bbf0399bdbc15045d80f402f6dbe
Signed-off-by: Mike Loptien <mike.loptien@se-eng.com>
Reviewed-on: http://review.coreboot.org/2249
Tested-by: build bot (Jenkins)
Reviewed-by: Marc Jones <marcj303@gmail.com>
This commit is contained in:
Mike Loptien 2013-01-31 10:19:31 -07:00 committed by Marc Jones
parent 8401453486
commit 6eced514bf
1 changed files with 2 additions and 2 deletions

View File

@ -833,12 +833,12 @@ static void amdfam10_domain_enable_resources(device_t dev)
{
u32 val;
/* Must be called after PCI enumeration and resource allocation */
printk(BIOS_DEBUG, "\nFam10 - domain_enable_resources: AmdInitMid.\n");
printk(BIOS_DEBUG, "\nFam10 - %s: AmdInitMid.\n", __func__);
val = agesawrapper_amdinitmid();
if (val) {
printk(BIOS_DEBUG, "agesawrapper_amdinitmid failed: %x \n", val);
}
printk(BIOS_DEBUG, " ader - leaving domain_enable_resources.\n");
printk(BIOS_DEBUG, " ader - leaving %s.\n", __func__);
}