Subversion Repositories HelenOS

Rev

Rev 4399 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
4399 trochtova 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
 
4438 trochtova 10
#endif