Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 458228 | Differences between
and this patch

Collapse All | Expand All

(-)a/work/vmci-only/linux/driver.c (-3 / +3 lines)
Lines 124-130 static struct pci_driver vmci_driver = { Link Here
124
   .name     = "vmci",
124
   .name     = "vmci",
125
   .id_table = vmci_ids,
125
   .id_table = vmci_ids,
126
   .probe = vmci_probe_device,
126
   .probe = vmci_probe_device,
127
   .remove = __devexit_p(vmci_remove_device),
127
   .remove = vmci_remove_device,
128
};
128
};
129
129
130
#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 19)
130
#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 19)
Lines 1741-1747 vmci_enable_msix(struct pci_dev *pdev) / Link Here
1741
 *-----------------------------------------------------------------------------
1741
 *-----------------------------------------------------------------------------
1742
 */
1742
 */
1743
1743
1744
static int __devinit
1744
static int 
1745
vmci_probe_device(struct pci_dev *pdev,           // IN: vmci PCI device
1745
vmci_probe_device(struct pci_dev *pdev,           // IN: vmci PCI device
1746
                  const struct pci_device_id *id) // IN: matching device ID
1746
                  const struct pci_device_id *id) // IN: matching device ID
1747
{
1747
{
Lines 1969-1975 vmci_probe_device(struct pci_dev *pdev, Link Here
1969
 *-----------------------------------------------------------------------------
1969
 *-----------------------------------------------------------------------------
1970
 */
1970
 */
1971
1971
1972
static void __devexit
1972
static void 
1973
vmci_remove_device(struct pci_dev* pdev)
1973
vmci_remove_device(struct pci_dev* pdev)
1974
{
1974
{
1975
   struct vmci_device *dev = pci_get_drvdata(pdev);
1975
   struct vmci_device *dev = pci_get_drvdata(pdev);

Return to bug 458228