- Remove dead argument to hypertransport_scan_chain
authorEric Biederman <ebiederm@xmission.com>
Thu, 4 Sep 2003 01:25:55 +0000 (01:25 +0000)
committerEric Biederman <ebiederm@xmission.com>
Thu, 4 Sep 2003 01:25:55 +0000 (01:25 +0000)
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1100 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

src/include/device/hypertransport.h
src/northbridge/amd/amdk8/northbridge.c

index 281f50e50534471ecdcfda69948f9d4ca41b3890..e342aeb506a7a70784d5eb52e22ac216c2d88bdb 100644 (file)
@@ -1,7 +1,7 @@
 #ifndef DEVICE_HYPERTRANSPORT_H
 #define DEVICE_HYPERTRANSPORT_H
 
-unsigned int hypertransport_scan_chain(struct bus *bus, unsigned min_unitid, unsigned int max);
+unsigned int hypertransport_scan_chain(struct bus *bus, unsigned int max);
 
 #define HT_IO_HOST_ALIGN 4096
 #define HT_MEM_HOST_ALIGN (1024*1024)
index 2db9bc18c9a55ad91773a6c442abb61742c0fcdb..7bcb1567ba41b1cb09f958085e0bd9de4526a193 100644 (file)
@@ -235,7 +235,7 @@ static unsigned int amdk8_scan_chains(device_t dev, unsigned int max)
                printk_debug("Hyper transport scan link: %d max: %d\n", link, max);
 #endif         
                /* Now we can scan all of the subordinate busses i.e. the chain on the hypertranport link */
-               max = hypertransport_scan_chain(&dev->link[link], 1, max);
+               max = hypertransport_scan_chain(&dev->link[link], max);
 
 #if 1
                printk_debug("Hyper transport scan link: %d new max: %d\n", link, max);