diff options
author | Eric Biederman <ebiederm@xmission.com> | 2003-09-04 01:25:55 +0000 |
---|---|---|
committer | Eric Biederman <ebiederm@xmission.com> | 2003-09-04 01:25:55 +0000 |
commit | 6638755a232d7ad8a5eb178804bed7a6847cf1ae (patch) | |
tree | 374d169cf1453298ae868b7a618cbf974117fe7e | |
parent | 481b5688b5f462db7fa0b27b7fdaf8c8f54fc78a (diff) | |
download | coreboot-6638755a232d7ad8a5eb178804bed7a6847cf1ae.tar.xz |
- Remove dead argument to hypertransport_scan_chain
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1100 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
-rw-r--r-- | src/include/device/hypertransport.h | 2 | ||||
-rw-r--r-- | src/northbridge/amd/amdk8/northbridge.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/include/device/hypertransport.h b/src/include/device/hypertransport.h index 281f50e505..e342aeb506 100644 --- a/src/include/device/hypertransport.h +++ b/src/include/device/hypertransport.h @@ -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) diff --git a/src/northbridge/amd/amdk8/northbridge.c b/src/northbridge/amd/amdk8/northbridge.c index 2db9bc18c9..7bcb1567ba 100644 --- a/src/northbridge/amd/amdk8/northbridge.c +++ b/src/northbridge/amd/amdk8/northbridge.c @@ -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); |