blob: 46200e01a226dd28d42202276955405b8c95732b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
--- setup/Linux/oss/build/pci_wrapper.inc 2009-08-27 05:19:07.000000000 +0300
+++ setup/Linux/oss/build/pci_wrapper.inc 2013-02-08 13:56:10.519794975 +0200
@@ -17,7 +17,11 @@
static dev_map_t dev_map[MAX_INSTANCE];
static int n_devmap = 0;
+#if LINUX_VERSION_CODE < KERNEL_VERSION(3,8,0)
static int __devinit
+#else
+static int
+#endif
osspci_probe (struct pci_dev *pcidev, const struct pci_device_id *pciid)
{
oss_device_t *osdev;
@@ -65,7 +69,11 @@
return 0;
}
-static void __devexit
+#if LINUX_VERSION_CODE < KERNEL_VERSION(3,8,0)
+static int __devexit
+#else
+static int
+#endif
osspci_remove (struct pci_dev *pcidev)
{
int i;
@@ -80,10 +88,11 @@
pci_disable_device (dev_map[i].pcidev);
osdev_delete (osdev);
- return;
+ return 0;
}
printk (KERN_ALERT DRIVER_NICK ": Can't find the PCI device to detach\n");
+ return -EIO;
}
void
|