base.h 336 B

123456789101112131415
  1. #ifndef _PCIDRIVER_BASE_H
  2. #define _PCIDRIVER_BASE_H
  3. #include "config.h"
  4. #include "compat.h"
  5. #include "debug.h"
  6. #include "pcibus.h"
  7. #include "sysfs.h"
  8. #include "dev.h"
  9. #include "int.h"
  10. pcidriver_privdata_t *pcidriver_get_privdata(int devid);
  11. void pcidriver_put_privdata(pcidriver_privdata_t *privdata);
  12. #endif /* _PCIDRIVER_BASE_H */