diff options
author | Li-Ta Lo <ollie@lanl.gov> | 2004-12-27 17:53:45 +0000 |
---|---|---|
committer | Li-Ta Lo <ollie@lanl.gov> | 2004-12-27 17:53:45 +0000 |
commit | 85e76c6af6d67942850113c148f0b14bc05351d8 (patch) | |
tree | 55e2707cb756a769cf1c8641fa7fb6705d24d081 /src/include | |
parent | e7c26a70ec3307d3d2041df1c03937c045479112 (diff) | |
download | coreboot-85e76c6af6d67942850113c148f0b14bc05351d8.tar.xz |
now rom_address is one of the resources
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1834 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/device/device.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/include/device/device.h b/src/include/device/device.h index 253ec97d43..8df71b2beb 100644 --- a/src/include/device/device.h +++ b/src/include/device/device.h @@ -75,9 +75,7 @@ struct device { uint8_t command; - /* Base registers for this device, can be adjusted by - * pcibios_fixup() as necessary. - */ + /* Base registers for this device. I/O, MEM and Expansion ROM */ struct resource resource[MAX_RESOURCES]; unsigned int resources; @@ -87,7 +85,6 @@ struct device { /* number of buses attached to the device */ unsigned int links; - unsigned long rom_address; struct device_operations *ops; struct chip_operations *chip_ops; void *chip_info; |