Family 15tn: 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: Ib8ab97666340a9481f3ab71f0f347382e964994f Signed-off-by: Mike Loptien <mike.loptien@se-eng.com> Reviewed-on: http://review.coreboot.org/2251 Tested-by: build bot (Jenkins) Reviewed-by: Marc Jones <marcj303@gmail.com>
This commit is contained in:
parent
6eced514bf
commit
e133aab5b5
|
@ -563,7 +563,7 @@ static void domain_enable_resources(device_t dev)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Must be called after PCI enumeration and resource allocation */
|
/* Must be called after PCI enumeration and resource allocation */
|
||||||
printk(BIOS_DEBUG, "\nFam15 - domain_enable_resources: AmdInitMid.\n");
|
printk(BIOS_DEBUG, "\nFam15 - %s: AmdInitMid.\n", __func__);
|
||||||
#if CONFIG_HAVE_ACPI_RESUME
|
#if CONFIG_HAVE_ACPI_RESUME
|
||||||
if (acpi_slp_type != 3) {
|
if (acpi_slp_type != 3) {
|
||||||
printk(BIOS_DEBUG, "agesawrapper_amdinitmid ");
|
printk(BIOS_DEBUG, "agesawrapper_amdinitmid ");
|
||||||
|
@ -582,7 +582,7 @@ static void domain_enable_resources(device_t dev)
|
||||||
printk(BIOS_DEBUG, "passed.\n");
|
printk(BIOS_DEBUG, "passed.\n");
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
printk(BIOS_DEBUG, " ader - leaving domain_enable_resources.\n");
|
printk(BIOS_DEBUG, " ader - leaving %s.\n", __func__);
|
||||||
}
|
}
|
||||||
|
|
||||||
#if CONFIG_HW_MEM_HOLE_SIZEK != 0
|
#if CONFIG_HW_MEM_HOLE_SIZEK != 0
|
||||||
|
|
Loading…
Reference in New Issue