diff options
author | Greg Kroah-Hartman <gregkh@suse.de> | 2005-06-21 00:15:16 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2006-06-26 15:25:06 -0400 |
commit | 95dc112a5770dc670a1b45a3d9ee346fdd2b2697 (patch) | |
tree | 899cd99bdc928ade94ddc7b003b0de7d275cac48 /drivers/char | |
parent | 0e6c62da7cd929b0389fc4a7e41464bb738647dc (diff) |
[PATCH] devfs: Remove devfs_mk_dir() function from the kernel tree
Removes the devfs_mk_dir() function and all callers of it.
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/char')
-rw-r--r-- | drivers/char/ipmi/ipmi_devintf.c | 2 | ||||
-rw-r--r-- | drivers/char/istallion.c | 1 | ||||
-rw-r--r-- | drivers/char/lp.c | 1 | ||||
-rw-r--r-- | drivers/char/ppdev.c | 1 | ||||
-rw-r--r-- | drivers/char/pty.c | 1 | ||||
-rw-r--r-- | drivers/char/stallion.c | 1 | ||||
-rw-r--r-- | drivers/char/tipar.c | 3 |
7 files changed, 0 insertions, 10 deletions
diff --git a/drivers/char/ipmi/ipmi_devintf.c b/drivers/char/ipmi/ipmi_devintf.c index e1c95374984c..55c57451ee1d 100644 --- a/drivers/char/ipmi/ipmi_devintf.c +++ b/drivers/char/ipmi/ipmi_devintf.c | |||
@@ -872,8 +872,6 @@ static __init int init_ipmi_devintf(void) | |||
872 | ipmi_major = rv; | 872 | ipmi_major = rv; |
873 | } | 873 | } |
874 | 874 | ||
875 | devfs_mk_dir(DEVICE_NAME); | ||
876 | |||
877 | rv = ipmi_smi_watcher_register(&smi_watcher); | 875 | rv = ipmi_smi_watcher_register(&smi_watcher); |
878 | if (rv) { | 876 | if (rv) { |
879 | unregister_chrdev(ipmi_major, DEVICE_NAME); | 877 | unregister_chrdev(ipmi_major, DEVICE_NAME); |
diff --git a/drivers/char/istallion.c b/drivers/char/istallion.c index ef20c1fc9c4c..d5054ea47472 100644 --- a/drivers/char/istallion.c +++ b/drivers/char/istallion.c | |||
@@ -5213,7 +5213,6 @@ int __init stli_init(void) | |||
5213 | printk(KERN_ERR "STALLION: failed to register serial memory " | 5213 | printk(KERN_ERR "STALLION: failed to register serial memory " |
5214 | "device\n"); | 5214 | "device\n"); |
5215 | 5215 | ||
5216 | devfs_mk_dir("staliomem"); | ||
5217 | istallion_class = class_create(THIS_MODULE, "staliomem"); | 5216 | istallion_class = class_create(THIS_MODULE, "staliomem"); |
5218 | for (i = 0; i < 4; i++) { | 5217 | for (i = 0; i < 4; i++) { |
5219 | devfs_mk_cdev(MKDEV(STL_SIOMEMMAJOR, i), | 5218 | devfs_mk_cdev(MKDEV(STL_SIOMEMMAJOR, i), |
diff --git a/drivers/char/lp.c b/drivers/char/lp.c index e57260525293..f07a9e361f39 100644 --- a/drivers/char/lp.c +++ b/drivers/char/lp.c | |||
@@ -907,7 +907,6 @@ static int __init lp_init (void) | |||
907 | return -EIO; | 907 | return -EIO; |
908 | } | 908 | } |
909 | 909 | ||
910 | devfs_mk_dir("printers"); | ||
911 | lp_class = class_create(THIS_MODULE, "printer"); | 910 | lp_class = class_create(THIS_MODULE, "printer"); |
912 | if (IS_ERR(lp_class)) { | 911 | if (IS_ERR(lp_class)) { |
913 | err = PTR_ERR(lp_class); | 912 | err = PTR_ERR(lp_class); |
diff --git a/drivers/char/ppdev.c b/drivers/char/ppdev.c index bee6c47b45bd..d437a4c9e634 100644 --- a/drivers/char/ppdev.c +++ b/drivers/char/ppdev.c | |||
@@ -782,7 +782,6 @@ static int __init ppdev_init (void) | |||
782 | err = PTR_ERR(ppdev_class); | 782 | err = PTR_ERR(ppdev_class); |
783 | goto out_chrdev; | 783 | goto out_chrdev; |
784 | } | 784 | } |
785 | devfs_mk_dir("parports"); | ||
786 | for (i = 0; i < PARPORT_MAX; i++) { | 785 | for (i = 0; i < PARPORT_MAX; i++) { |
787 | devfs_mk_cdev(MKDEV(PP_MAJOR, i), | 786 | devfs_mk_cdev(MKDEV(PP_MAJOR, i), |
788 | S_IFCHR | S_IRUGO | S_IWUGO, "parports/%d", i); | 787 | S_IFCHR | S_IRUGO | S_IWUGO, "parports/%d", i); |
diff --git a/drivers/char/pty.c b/drivers/char/pty.c index 9b5a2c0e7008..64d3d1d0b31b 100644 --- a/drivers/char/pty.c +++ b/drivers/char/pty.c | |||
@@ -351,7 +351,6 @@ static int pty_unix98_ioctl(struct tty_struct *tty, struct file *file, | |||
351 | 351 | ||
352 | static void __init unix98_pty_init(void) | 352 | static void __init unix98_pty_init(void) |
353 | { | 353 | { |
354 | devfs_mk_dir("pts"); | ||
355 | ptm_driver = alloc_tty_driver(NR_UNIX98_PTY_MAX); | 354 | ptm_driver = alloc_tty_driver(NR_UNIX98_PTY_MAX); |
356 | if (!ptm_driver) | 355 | if (!ptm_driver) |
357 | panic("Couldn't allocate Unix98 ptm driver"); | 356 | panic("Couldn't allocate Unix98 ptm driver"); |
diff --git a/drivers/char/stallion.c b/drivers/char/stallion.c index a9c5a7230f89..c090a63fbdea 100644 --- a/drivers/char/stallion.c +++ b/drivers/char/stallion.c | |||
@@ -3069,7 +3069,6 @@ static int __init stl_init(void) | |||
3069 | */ | 3069 | */ |
3070 | if (register_chrdev(STL_SIOMEMMAJOR, "staliomem", &stl_fsiomem)) | 3070 | if (register_chrdev(STL_SIOMEMMAJOR, "staliomem", &stl_fsiomem)) |
3071 | printk("STALLION: failed to register serial board device\n"); | 3071 | printk("STALLION: failed to register serial board device\n"); |
3072 | devfs_mk_dir("staliomem"); | ||
3073 | 3072 | ||
3074 | stallion_class = class_create(THIS_MODULE, "staliomem"); | 3073 | stallion_class = class_create(THIS_MODULE, "staliomem"); |
3075 | for (i = 0; i < 4; i++) { | 3074 | for (i = 0; i < 4; i++) { |
diff --git a/drivers/char/tipar.c b/drivers/char/tipar.c index 079db5a935a1..70cfe07ab999 100644 --- a/drivers/char/tipar.c +++ b/drivers/char/tipar.c | |||
@@ -507,9 +507,6 @@ tipar_init_module(void) | |||
507 | goto out; | 507 | goto out; |
508 | } | 508 | } |
509 | 509 | ||
510 | /* Use devfs with tree: /dev/ticables/par/[0..2] */ | ||
511 | devfs_mk_dir("ticables/par"); | ||
512 | |||
513 | tipar_class = class_create(THIS_MODULE, "ticables"); | 510 | tipar_class = class_create(THIS_MODULE, "ticables"); |
514 | if (IS_ERR(tipar_class)) { | 511 | if (IS_ERR(tipar_class)) { |
515 | err = PTR_ERR(tipar_class); | 512 | err = PTR_ERR(tipar_class); |