Re: [PATCH] Driver Core update for 2.6.6-rc1

From: Greg KH
Date: Thu Apr 15 2004 - 13:09:25 EST


ChangeSet 1.1643.36.14, 2004/04/09 11:32:55-07:00, marcel@xxxxxxxxxxxx

[PATCH] Add sysfs class support for CAPI

here is a patch that adds class support to the ISDN CAPI module. Without
it udev won't create the /dev/capi20 device node.


drivers/isdn/capi/capi.c | 14 ++++++++++++++
1 files changed, 14 insertions(+)


diff -Nru a/drivers/isdn/capi/capi.c b/drivers/isdn/capi/capi.c
--- a/drivers/isdn/capi/capi.c Thu Apr 15 10:20:26 2004
+++ b/drivers/isdn/capi/capi.c Thu Apr 15 10:20:26 2004
@@ -37,6 +37,7 @@
#include <linux/capi.h>
#include <linux/kernelcapi.h>
#include <linux/init.h>
+#include <linux/device.h>
#include <linux/devfs_fs_kernel.h>
#include <linux/isdn/capiutil.h>
#include <linux/isdn/capicmd.h>
@@ -56,6 +57,8 @@

/* -------- driver information -------------------------------------- */

+static struct class_simple *capi_class;
+
int capi_major = 68; /* allocated */
#ifdef CONFIG_ISDN_CAPI_MIDDLEWARE
#define CAPINC_NR_PORTS 32
@@ -1479,11 +1482,20 @@
return -EIO;
}

+ capi_class = class_simple_create(THIS_MODULE, "capi");
+ if (IS_ERR(capi_class)) {
+ unregister_chrdev(capi_major, "capi20");
+ return PTR_ERR(capi_class);
+ }
+
+ class_simple_device_add(capi_class, MKDEV(capi_major, 0), NULL, "capi20");
devfs_mk_cdev(MKDEV(capi_major, 0), S_IFCHR | S_IRUSR | S_IWUSR,
"isdn/capi20");

#ifdef CONFIG_ISDN_CAPI_MIDDLEWARE
if (capinc_tty_init() < 0) {
+ class_simple_device_remove(MKDEV(capi_major, 0));
+ class_simple_destroy(capi_class);
unregister_chrdev(capi_major, "capi20");
return -ENOMEM;
}
@@ -1510,6 +1522,8 @@
{
proc_exit();

+ class_simple_device_remove(MKDEV(capi_major, 0));
+ class_simple_destroy(capi_class);
unregister_chrdev(capi_major, "capi20");
devfs_remove("isdn/capi20");


-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/