Changes in uspace/drv/bus/pci/pciintel/pci.h [9d58539:46eb2c4] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/pci/pciintel/pci.h
r9d58539 r46eb2c4 40 40 #include "pci_regs.h" 41 41 42 #define PCI_MAX_HW_RES 842 #define PCI_MAX_HW_RES 10 43 43 44 44 typedef struct pciintel_bus { 45 45 /** DDF device node */ 46 46 ddf_dev_t *dnode; 47 uint32_t conf_io_addr;48 void *conf_data_port;49 void *conf_addr_port;47 ioport32_t *conf_addr_reg; 48 ioport32_t *conf_data_reg; 49 pio_window_t pio_win; 50 50 fibril_mutex_t conf_mutex; 51 51 } pci_bus_t; … … 58 58 int dev; 59 59 int fn; 60 int vendor_id; 61 int device_id; 60 uint16_t vendor_id; 61 uint16_t device_id; 62 uint16_t command; 62 63 uint8_t class_code; 63 64 uint8_t subclass_code; … … 66 67 hw_resource_list_t hw_resources; 67 68 hw_resource_t resources[PCI_MAX_HW_RES]; 69 pio_window_t pio_window; 68 70 } pci_fun_t; 69 71
Note:
See TracChangeset
for help on using the changeset viewer.