blob: 131d74851a9022bb9217f039879aefd54553cba1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef _PCIDEV_MODEL_H
#define _PCIDEV_MODEL_H
#include <stdio.h>
#include <pcilib/model.h>
//#define PCIDEV_DEBUG
#define PCIDEV_DMA_ADDRESS 0 /**< Address of DMA engine to use for communication */
const pcilib_model_description_t *pcilib_get_event_model(pcilib_t *pcilib, unsigned short vendor_id, unsigned short device_id, const char *model);
#endif /* _PCIDEV_MODEL_H */
|