Steven Sherk ([email protected]) just uploaded a new patch set to gerrit, 
which you can find at http://review.coreboot.org/2226

-gerrit

commit e02fd3464a605b249be294bff7e6f5e0c6e3bc07
Author: Steven Sherk <[email protected]>
Date:   Tue Jan 29 16:13:35 2013 -0700

    Rename family15tn 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 <[email protected]>
    
    Change-Id: Icda3ec58219baa177af3b1dce729c6ad1f744be8
    Signed-off-by: Steven Sherk <[email protected]>
---
 src/northbridge/amd/agesa/family15tn/northbridge.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/northbridge/amd/agesa/family15tn/northbridge.c 
b/src/northbridge/amd/agesa/family15tn/northbridge.c
index a22fc9d..eb63ead 100644
--- a/src/northbridge/amd/agesa/family15tn/northbridge.c
+++ b/src/northbridge/amd/agesa/family15tn/northbridge.c
@@ -326,7 +326,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;
@@ -419,7 +419,7 @@ static void create_vga_resource(device_t dev, unsigned 
nodeid)
        set_vga_enable_reg(nodeid, sblink);
 }
 
-static void set_resources(device_t dev)
+static void nb_set_resources(device_t dev)
 {
        unsigned nodeid;
        struct bus *bus;
@@ -448,8 +448,8 @@ static void northbridge_init(struct device *dev)
 
 
 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,
        .enable           = 0,

-- 
coreboot mailing list: [email protected]
http://www.coreboot.org/mailman/listinfo/coreboot

Reply via email to