Changes in uspace/drv/bus/pci/pciintel/pci.c [46eb2c4:99e8fb7b] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/pci/pciintel/pci.c
r46eb2c4 r99e8fb7b 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.