[svn-commits] branch 1.2 - r843 /branches/1.2/zaptel.c

svn-commits at lists.digium.com svn-commits at lists.digium.com
Thu Dec 1 18:03:02 CST 2005


Author: russell
Date: Thu Dec  1 18:03:01 2005
New Revision: 843

URL: http://svn.digium.com/view/zaptel?rev=843&view=rev
Log:
fix udev support for 2.6.15 (issue #5891)

Modified:
    branches/1.2/zaptel.c

Modified: branches/1.2/zaptel.c
URL: http://svn.digium.com/view/zaptel/branches/1.2/zaptel.c?rev=843&r1=842&r2=843&view=diff
==============================================================================
--- branches/1.2/zaptel.c (original)
+++ branches/1.2/zaptel.c Thu Dec  1 18:03:01 2005
@@ -157,6 +157,15 @@
 
 /* udev necessary data structures.  Yeah! */
 #ifdef CONFIG_ZAP_UDEV
+
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,15)
+#define CLASS_DEV_CREATE(class, devt, device, name) \
+        class_device_create(class, NULL, devt, device, name)
+#else
+#define CLASS_DEV_CREATE(class, devt, device, name) \
+        class_device_create(class, devt, device, name)
+#endif
+
 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,13)
 static struct class *zap_class = NULL;
 #else
@@ -166,7 +175,9 @@
 #define class_device_create class_simple_device_add
 #define class_device_destroy(a, b) class_simple_device_remove(b)
 #endif
-#endif
+
+#endif /* CONFIG_ZAP_UDEV */
+
 
 /* There is a table like this in the PPP driver, too */
 
@@ -4445,7 +4456,7 @@
 	for (x = 0; x < span->channels; x++) {
 		char chan_name[50];
 		sprintf(chan_name, "zap%d", span->chans[x].channo);
-		class_device_create(zap_class, MKDEV(ZT_MAJOR, span->chans[x].channo), NULL, chan_name);
+		CLASS_DEV_CREATE(zap_class, MKDEV(ZT_MAJOR, span->chans[x].channo), NULL, chan_name);
 	}
 #endif /* CONFIG_ZAP_UDEV */
 
@@ -6504,10 +6515,10 @@
 
 #ifdef CONFIG_ZAP_UDEV /* udev support functions */
 	zap_class = class_create(THIS_MODULE, "zaptel");
-	class_device_create(zap_class, MKDEV(ZT_MAJOR, 253), NULL, "zaptimer");
-	class_device_create(zap_class, MKDEV(ZT_MAJOR, 254), NULL, "zapchannel");
-	class_device_create(zap_class, MKDEV(ZT_MAJOR, 255), NULL, "zappseudo");
-	class_device_create(zap_class, MKDEV(ZT_MAJOR, 0), NULL, "zapctl");
+	CLASS_DEV_CREATE(zap_class, MKDEV(ZT_MAJOR, 253), NULL, "zaptimer");
+	CLASS_DEV_CREATE(zap_class, MKDEV(ZT_MAJOR, 254), NULL, "zapchannel");
+	CLASS_DEV_CREATE(zap_class, MKDEV(ZT_MAJOR, 255), NULL, "zappseudo");
+	CLASS_DEV_CREATE(zap_class, MKDEV(ZT_MAJOR, 0), NULL, "zapctl");
 #endif /* CONFIG_ZAP_UDEV */
 
 #ifdef CONFIG_DEVFS_FS



More information about the svn-commits mailing list