summaryrefslogtreecommitdiff
path: root/src/northbridge
diff options
context:
space:
mode:
authorMike Loptien <mike.loptien@se-eng.com>2013-01-31 10:19:31 -0700
committerMarc Jones <marcj303@gmail.com>2013-02-04 18:17:34 +0100
commit6eced514bfa66d0f52839e3952465ed929c27744 (patch)
treefa1cd4eb5e3197e83563bc97f20f35878d2a10fd /src/northbridge
parent84014534860964d7b20fa681cd83151952dcc62b (diff)
downloadcoreboot-6eced514bfa66d0f52839e3952465ed929c27744.tar.xz
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>
Diffstat (limited to 'src/northbridge')
-rw-r--r--src/northbridge/amd/agesa/family10/northbridge.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/northbridge/amd/agesa/family10/northbridge.c b/src/northbridge/amd/agesa/family10/northbridge.c
index 4bdc7b4fed..c5d570a3e7 100644
--- a/src/northbridge/amd/agesa/family10/northbridge.c
+++ b/src/northbridge/amd/agesa/family10/northbridge.c
@@ -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__);
}