diff options
author | Mike Loptien <mike.loptien@se-eng.com> | 2013-01-30 14:12:01 -0700 |
---|---|---|
committer | Marc Jones <marcj303@gmail.com> | 2013-02-04 18:16:43 +0100 |
commit | 84014534860964d7b20fa681cd83151952dcc62b (patch) | |
tree | a32e8dcf16c3303ab8670dc610ff0b819ed9fc3b /src | |
parent | 1cbabb00d9c4fb2f5a8e2e305ae3eb2e6c596897 (diff) |
Family 15: 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: Ie71fec39df5e7703d35d6505dc7d5b55179e2c7e
Signed-off-by: Mike Loptien <mike.loptien@se-eng.com>
Reviewed-on: http://review.coreboot.org/2234
Tested-by: build bot (Jenkins)
Reviewed-by: Martin Roth <martin.roth@se-eng.com>
Reviewed-by: Marc Jones <marcj303@gmail.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/northbridge/amd/agesa/family15/northbridge.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/northbridge/amd/agesa/family15/northbridge.c b/src/northbridge/amd/agesa/family15/northbridge.c index 2ab0e3e62c..1adf714d19 100644 --- a/src/northbridge/amd/agesa/family15/northbridge.c +++ b/src/northbridge/amd/agesa/family15/northbridge.c @@ -570,12 +570,12 @@ static void domain_enable_resources(device_t dev) { u32 val; /* 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__); 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, " Fam15 - leaving %s.\n", __func__); } |