Changeset f278930 in mainline for uspace/drv/bus/pci/pciintel/pci.c
- Timestamp:
- 2011-09-03T12:02:08Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7fff38c1
- Parents:
- f480d7e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/pci/pciintel/pci.c
rf480d7e rf278930 203 203 204 204 static int pci_add_device(ddf_dev_t *); 205 static int pci_fun_online(ddf_fun_t *); 206 static int pci_fun_offline(ddf_fun_t *); 205 207 206 208 /** PCI bus driver standard operations */ 207 209 static driver_ops_t pci_ops = { 208 .add_device = &pci_add_device 210 .add_device = &pci_add_device, 211 .fun_online = &pci_fun_online, 212 .fun_offline = &pci_fun_offline, 209 213 }; 210 214 … … 651 655 } 652 656 657 static int pci_fun_online(ddf_fun_t *fun) 658 { 659 ddf_msg(LVL_DEBUG, "pci_fun_online()"); 660 return ddf_fun_online(fun); 661 } 662 663 static int pci_fun_offline(ddf_fun_t *fun) 664 { 665 ddf_msg(LVL_DEBUG, "pci_fun_offline()"); 666 return ddf_fun_offline(fun); 667 } 668 653 669 static void pciintel_init(void) 654 670 {
Note:
See TracChangeset
for help on using the changeset viewer.