Skip to content

Commit b12d667

Browse files
committed
Bumped Versions of lib and kernel module.
Made PciDevice_delete public.
1 parent a49daa0 commit b12d667

File tree

3 files changed

+20
-2
lines changed

3 files changed

+20
-2
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
11.0.7
1+
11.1.7

include/pda/pci.h

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff 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

patches/linux_uio/uio_pci_dma.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
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

0 commit comments

Comments
 (0)