[coreboot] New patch to review for coreboot: a24df51 Rename family15 pci northbridgeops functions.

Steven Sherk (steven.sherk@se-eng.com) gerrit at coreboot.org
Wed Jan 30 00:03:02 CET 2013


Steven Sherk (steven.sherk at se-eng.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/2225

-gerrit

commit a24df516f4569a4c86d87b028c5e00cf001a4155
Author: Steven Sherk <steven.sherk at se-eng.com>
Date:   Tue Jan 29 15:46:05 2013 -0700

    Rename family15 pci northbridgeops functions.
    
    This is a port of the following
    commit 8a49ac7f808f76821e7d63070420cfd98f707c7c
    
        Rename fam14 pci northbridge ops functions.
    
        Clarify the northbridge ops function names.
    
    original-Change-Id: If7d89de761c1e22f9ae39d36f5cf334cc2910e1d
        Signed-off-by: Marc Jones <marc.jones at se-eng.com>
    
    Change-Id: Id7889bf02e2696220081251acdf695327267c796
    Signed-off-by: Steven Sherk <steven.sherk at se-eng.com>
---
 src/northbridge/amd/agesa/family15/northbridge.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/northbridge/amd/agesa/family15/northbridge.c b/src/northbridge/amd/agesa/family15/northbridge.c
index abd53b2..2ab0e3e 100644
--- a/src/northbridge/amd/agesa/family15/northbridge.c
+++ b/src/northbridge/amd/agesa/family15/northbridge.c
@@ -330,7 +330,7 @@ static void amdfam15_link_read_bases(device_t dev, u32 nodeid, u32 link)
 }
 
 
-static void read_resources(device_t dev)
+static void nb_read_resources(device_t dev)
 {
 	u32 nodeid;
 	struct bus *link;
@@ -427,7 +427,7 @@ static void create_vga_resource(device_t dev, unsigned nodeid)
 }
 
 
-static void set_resources(device_t dev)
+static void nb_set_resources(device_t dev)
 {
 	unsigned nodeid;
 	struct bus *bus;
@@ -478,8 +478,8 @@ static unsigned scan_chains(device_t dev, unsigned max)
 }
 
 static struct device_operations northbridge_operations = {
-	.read_resources	  = read_resources,
-	.set_resources	  = set_resources,
+	.read_resources	  = nb_read_resources,
+	.set_resources	  = nb_set_resources,
 	.enable_resources = pci_dev_enable_resources,
 	.init		  = northbridge_init,
 	.scan_bus	  = scan_chains,



More information about the coreboot mailing list