diff options
Diffstat (limited to 'driver/sysfs.c')
-rw-r--r-- | driver/sysfs.c | 3 |
1 files changed, 3 insertions, 0 deletions
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; |