Any help would be appreciated. A task of pci driver is in my hands. What's the corresponding FreeBSD function calls for the following Linux functions?
Sincerely,
Liu Wang
Code:
pci_set_dma_mask(dev, DMA_64BIT_MASK)
pci_set_consistent_dma_mask(dev, DMA_64BIT_MASK)
pci_set_master(dev)
pci_release_regions(dev)
pci_disable_device(dev)
Liu Wang