Mike Loptien ([email protected]) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/2234
-gerrit commit f8241862bc405e35c3a0816e3d6f2ff1e180034d Author: Mike Loptien <[email protected]> Date: Wed Jan 30 14:12:01 2013 -0700 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 <[email protected]> --- src/northbridge/amd/agesa/family15/northbridge.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/northbridge/amd/agesa/family15/northbridge.c b/src/northbridge/amd/agesa/family15/northbridge.c index 2ab0e3e..1adf714 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__); } -- coreboot mailing list: [email protected] http://www.coreboot.org/mailman/listinfo/coreboot

