X-Git-Url: http://rtime.felk.cvut.cz/gitweb/lincan.git/blobdiff_plain/5b857487a790f155e047cb13d272535a4a683d4b..cd956e65f376d8ab9734cdd3904745a56fccfb20:/lincan/src/main.c diff --git a/lincan/src/main.c b/lincan/src/main.c index 1a868a7..c4fb22a 100644 --- a/lincan/src/main.c +++ b/lincan/src/main.c @@ -308,7 +308,11 @@ int init_module(void) S_IFCHR | S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP, &can_fops, (void*)objects_p[i]); #else + #if (LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,14)) this_dev=class_device_create(can_class, MKDEV(major, dev_minor), NULL, "can%d", dev_minor); + #else /* >= 2.6.15 */ + this_dev=class_device_create(can_class, NULL, MKDEV(major, dev_minor), NULL, "can%d", dev_minor); + #endif /* >= 2.6.15 */ if(!this_dev){ CANMSG("problem to create device \"can%d\" in the class \"can\"\n", dev_minor); }else{