summaryrefslogtreecommitdiff
path: root/src/include/device/pci.h
diff options
context:
space:
mode:
authorYinghai Lu <yinghailu@gmail.com>2006-10-04 20:46:15 +0000
committerYinghai Lu <yinghailu@gmail.com>2006-10-04 20:46:15 +0000
commitd4b278c02c1da92219ebeb34204b9768934aeca3 (patch)
tree488d097cac9744cfc9b8ff7c89ce69bcb21370cb /src/include/device/pci.h
parent2e3757d11c565a8fe68dc2a2c34975e98304533c (diff)
downloadcoreboot-d4b278c02c1da92219ebeb34204b9768934aeca3.tar.xz
AMD Rev F support
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2435 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/include/device/pci.h')
-rw-r--r--src/include/device/pci.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/include/device/pci.h b/src/include/device/pci.h
index 2daa1ca03e..decc20d29b 100644
--- a/src/include/device/pci.h
+++ b/src/include/device/pci.h
@@ -29,12 +29,12 @@ struct pci_operations {
/* Common pci bus operations */
struct pci_bus_operations {
- uint8_t (*read8) (struct bus *pbus, unsigned char bus, int devfn, int where);
- uint16_t (*read16) (struct bus *pbus, unsigned char bus, int devfn, int where);
- uint32_t (*read32) (struct bus *pbus, unsigned char bus, int devfn, int where);
- void (*write8) (struct bus *pbus, unsigned char bus, int devfn, int where, uint8_t val);
- void (*write16) (struct bus *pbus, unsigned char bus, int devfn, int where, uint16_t val);
- void (*write32) (struct bus *pbus, unsigned char bus, int devfn, int where, uint32_t val);
+ uint8_t (*read8) (struct bus *pbus, int bus, int devfn, int where);
+ uint16_t (*read16) (struct bus *pbus, int bus, int devfn, int where);
+ uint32_t (*read32) (struct bus *pbus, int bus, int devfn, int where);
+ void (*write8) (struct bus *pbus, int bus, int devfn, int where, uint8_t val);
+ void (*write16) (struct bus *pbus, int bus, int devfn, int where, uint16_t val);
+ void (*write32) (struct bus *pbus, int bus, int devfn, int where, uint32_t val);
};
struct pci_driver {