summaryrefslogtreecommitdiffstats
path: root/driver/base.c
diff options
context:
space:
mode:
authorroot <root@ipepdvpc4>2011-07-19 19:13:12 +0200
committerroot <root@ipepdvpc4>2011-07-19 19:13:12 +0200
commit9756b55de5749b495481be4b30b87d6162b14f62 (patch)
treeafa3288de7988e68f0e5f0b231865b4cae11cb91 /driver/base.c
parent97f2773f8c98a158cecb0647a841eb679be2ad9d (diff)
downloadpcitool-9756b55de5749b495481be4b30b87d6162b14f62.tar.gz
pcitool-9756b55de5749b495481be4b30b87d6162b14f62.tar.bz2
pcitool-9756b55de5749b495481be4b30b87d6162b14f62.tar.xz
pcitool-9756b55de5749b495481be4b30b87d6162b14f62.zip
Fix few compilation issues with recent kernels
Diffstat (limited to 'driver/base.c')
-rw-r--r--driver/base.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/driver/base.c b/driver/base.c
index 7f4ccad..2b998e3 100644
--- a/driver/base.c
+++ b/driver/base.c
@@ -489,7 +489,11 @@ static void __devexit pcidriver_remove(struct pci_dev *pdev)
*/
static struct file_operations pcidriver_fops = {
.owner = THIS_MODULE,
+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,11)
.ioctl = pcidriver_ioctl,
+#else
+ .unlocked_ioctl = pcidriver_ioctl,
+#endif
.mmap = pcidriver_mmap,
.open = pcidriver_open,
.release = pcidriver_release,