.name = VMCI_DEVICE_NAME,
.id_table = vmci_ids,
.probe = vmci_probe_device,
- .remove = __devexit_p(vmci_remove_device),
+ .remove = vmci_remove_device,
};
#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 19)
*-----------------------------------------------------------------------------
*/
-static int __devinit
+static int
vmci_probe_device(struct pci_dev *pdev, // IN: vmci PCI device
const struct pci_device_id *id) // IN: matching device ID
{
*-----------------------------------------------------------------------------
*/
-static void __devexit
+static void
vmci_remove_device(struct pci_dev* pdev)
{
struct vmci_device *dev = pci_get_drvdata(pdev);
}
-
-
/*
*-----------------------------------------------------------------------------
*
#ifndef _VMCI_VERSION_H_
#define _VMCI_VERSION_H_
-#define VMCI_DRIVER_VERSION 9.5.11.0
-#define VMCI_DRIVER_VERSION_COMMAS 9,5,11,0
-#define VMCI_DRIVER_VERSION_STRING "9.5.11.0"
+#define VMCI_DRIVER_VERSION 9.5.12.0
+#define VMCI_DRIVER_VERSION_COMMAS 9,5,12,0
+#define VMCI_DRIVER_VERSION_STRING "9.5.12.0"
#endif /* _VMCI_VERSION_H_ */