From 9756b55de5749b495481be4b30b87d6162b14f62 Mon Sep 17 00:00:00 2001 From: root Date: Tue, 19 Jul 2011 19:13:12 +0200 Subject: Fix few compilation issues with recent kernels --- driver/sysfs.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'driver/sysfs.c') diff --git a/driver/sysfs.c b/driver/sysfs.c index 59536ab..47e4395 100644 --- a/driver/sysfs.c +++ b/driver/sysfs.c @@ -52,7 +52,10 @@ static int _pcidriver_sysfs_initialize(pcidriver_privdata_t *privdata, return -ENOMEM; sysfs_attr->attr.mode = S_IRUGO; +#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,24) + // DS: Shall we lock now while accessing driver data structures??? sysfs_attr->attr.owner = THIS_MODULE; +#endif sysfs_attr->show = callback; sysfs_attr->store = NULL; -- cgit v1.2.3