File tree Expand file tree Collapse file tree 3 files changed +20
-2
lines changed
Expand file tree Collapse file tree 3 files changed +20
-2
lines changed Original file line number Diff line number Diff line change 1- 11.0 .7
1+ 11.1 .7
Original file line number Diff line number Diff line change @@ -104,6 +104,24 @@ PciDevice_new
104104 const uint8_t function_id
105105);
106106
107+ /**
108+ * PciDevice destructor
109+ *
110+ * Don't call if device belongs to a DeviceOperator!
111+ * @param [in] device
112+ * Device object that has to be destroyed.
113+ * @param [in] delete_persistant
114+ * Flag that determines whether the allocated DMA buffers have to stay
115+ * in the system persistantly or not.
116+ * @return PDA_SUCCESS if no error happened, something different if an error happened.
117+ */
118+ PdaDebugReturnCode
119+ PciDevice_delete
120+ (
121+ PciDevice * device ,
122+ uint8_t persistant
123+ );
124+
107125/**
108126 * Register an Interrupt Service Routine (ISR).
109127 * @param [in] device
Original file line number Diff line number Diff line change 4848#define LINUX_VERSION_CODE KERNEL_VERSION(2,6,35)
4949*/
5050
51- #define UIO_PCI_DMA_VERSION "0.4 .0"
51+ #define UIO_PCI_DMA_VERSION "0.5 .0"
5252#define UIO_PCI_DMA_MINOR "0"
5353
5454#define UIO_PCI_DMA_SUCCESS 0
You can’t perform that action at this time.
0 commit comments