[coreboot] Patch set updated for coreboot: f824186 Family 15: Update for string portability

Mike Loptien (mike.loptien@se-eng.com) gerrit at coreboot.org
Fri Feb 1 19:56:34 CET 2013


Mike Loptien (mike.loptien at se-eng.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/2234

-gerrit

commit f8241862bc405e35c3a0816e3d6f2ff1e180034d
Author: Mike Loptien <mike.loptien at se-eng.com>
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 <mike.loptien at se-eng.com>
---
 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__);
 }
 
 



More information about the coreboot mailing list