diff options
author | Eric Biederman <ebiederm@xmission.com> | 2004-10-16 19:58:35 +0000 |
---|---|---|
committer | Eric Biederman <ebiederm@xmission.com> | 2004-10-16 19:58:35 +0000 |
commit | 04da1d35d11ba195fbf0af8f7ca5149b6ce502a6 (patch) | |
tree | 81de274486d10ed6c1b126841f2d22e731cef9ed /src/include/device | |
parent | 858ac5c5cd299156cbe79be1cb50f2a7a582b61c (diff) | |
download | coreboot-04da1d35d11ba195fbf0af8f7ca5149b6ce502a6.tar.xz |
- Bump MAX_LINKS to 4 I have actually found an i2c bridge that needs this
- Fix the hdama Config.lb to not longer use the link keywords oops,
and instead to have it nest everything properly.
- Update config.g to not support the link keyword
- update config.g to not support northbridge/southbridge/cpu/pmc noise words
we can just use chip now.
- Remove old link handling from the code
- Detect and handle duplicate paths so we generate one device with multiple links
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1685 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/include/device')
-rw-r--r-- | src/include/device/device.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/device/device.h b/src/include/device/device.h index d5d2e8d946..79402e2111 100644 --- a/src/include/device/device.h +++ b/src/include/device/device.h @@ -40,7 +40,7 @@ struct bus { }; #define MAX_RESOURCES 12 -#define MAX_LINKS 3 +#define MAX_LINKS 4 /* * There is one device structure for each slot-number/function-number * combination: |