Changeset 476f62c in mainline for uspace/drv/bus/pci/pciintel/pci.c
- Timestamp:
- 2014-01-17T17:26:48Z (11 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5828554, cf982ff
- Parents:
- 61b5b73d (diff), 66be0288 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/pci/pciintel/pci.c
r61b5b73d r476f62c 153 153 154 154 155 static int pci_config_space_write_32(ddf_fun_t *fun, uint32_t address,155 static int config_space_write_32(ddf_fun_t *fun, uint32_t address, 156 156 uint32_t data) 157 157 { … … 162 162 } 163 163 164 static int pci_config_space_write_16(164 static int config_space_write_16( 165 165 ddf_fun_t *fun, uint32_t address, uint16_t data) 166 166 { … … 171 171 } 172 172 173 static int pci_config_space_write_8(173 static int config_space_write_8( 174 174 ddf_fun_t *fun, uint32_t address, uint8_t data) 175 175 { … … 180 180 } 181 181 182 static int pci_config_space_read_32(182 static int config_space_read_32( 183 183 ddf_fun_t *fun, uint32_t address, uint32_t *data) 184 184 { … … 189 189 } 190 190 191 static int pci_config_space_read_16(191 static int config_space_read_16( 192 192 ddf_fun_t *fun, uint32_t address, uint16_t *data) 193 193 { … … 198 198 } 199 199 200 static int pci_config_space_read_8(200 static int config_space_read_8( 201 201 ddf_fun_t *fun, uint32_t address, uint8_t *data) 202 202 { … … 217 217 218 218 static pci_dev_iface_t pci_dev_ops = { 219 .config_space_read_8 = & pci_config_space_read_8,220 .config_space_read_16 = & pci_config_space_read_16,221 .config_space_read_32 = & pci_config_space_read_32,222 .config_space_write_8 = & pci_config_space_write_8,223 .config_space_write_16 = & pci_config_space_write_16,224 .config_space_write_32 = & pci_config_space_write_32219 .config_space_read_8 = &config_space_read_8, 220 .config_space_read_16 = &config_space_read_16, 221 .config_space_read_32 = &config_space_read_32, 222 .config_space_write_8 = &config_space_write_8, 223 .config_space_write_16 = &config_space_write_16, 224 .config_space_write_32 = &config_space_write_32 225 225 }; 226 226
Note:
See TracChangeset
for help on using the changeset viewer.