Subversion Repositories HelenOS

Rev

Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

  1. #ifndef PCI_CONF_H
  2. #define PCI_CONF_H
  3.  
  4. #include "pci.h"
  5.  
  6. uint8_t pci_conf_read_8(pci_dev_t *dev, int reg);
  7. uint16_t pci_conf_read_16(pci_dev_t *dev, int reg);
  8. uint32_t pci_conf_read_32(pci_dev_t *dev, int reg);
  9.  
  10. #endif