Changeset 9e9ced0 in mainline for uspace/drv/bus/pci/pciintel/pci.c
- Timestamp:
- 2018-05-22T19:06:50Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- d6c0016
- Parents:
- a86174ec
- git-author:
- Jakub Jermar <jakub@…> (2018-04-22 12:14:08)
- git-committer:
- Jakub Jermar <jakub@…> (2018-05-22 19:06:50)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/pci/pciintel/pci.c
ra86174ec r9e9ced0 738 738 739 739 if (pio_enable_resource(&bus->pio_win, 740 &hw_resources.resources[0], 741 (void **) &bus->conf_space)) {740 &hw_resources.resources[0], (void **) &bus->conf_space, 741 NULL)) { 742 742 ddf_msg(LVL_ERROR, 743 743 "Failed to map configuration space."); … … 759 759 760 760 if (pio_enable_resource(&bus->pio_win, 761 &hw_resources.resources[0], 762 (void **) &bus->conf_addr_reg)) {761 &hw_resources.resources[0], (void **) &bus->conf_addr_reg, 762 NULL)) { 763 763 ddf_msg(LVL_ERROR, 764 764 "Failed to enable configuration ports."); … … 767 767 } 768 768 if (pio_enable_resource(&bus->pio_win, 769 &hw_resources.resources[1], 770 (void **) &bus->conf_data_reg)) {769 &hw_resources.resources[1], (void **) &bus->conf_data_reg, 770 NULL)) { 771 771 ddf_msg(LVL_ERROR, 772 772 "Failed to enable configuration ports.");
Note:
See TracChangeset
for help on using the changeset viewer.