Commit b8a7b080 authored by Christoph Hellwig's avatar Christoph Hellwig Committed by Jeff Garzik

[PATCH] devfs: minor miscdev changes

Make sure the first argument to devfs_register is zero.
parent 2e080de9
...@@ -166,8 +166,8 @@ static struct file_operations misc_fops = { ...@@ -166,8 +166,8 @@ static struct file_operations misc_fops = {
int misc_register(struct miscdevice * misc) int misc_register(struct miscdevice * misc)
{ {
static devfs_handle_t devfs_handle, dir;
struct miscdevice *c; struct miscdevice *c;
char buf[256];
if (misc->next || misc->prev) if (misc->next || misc->prev)
return -EBUSY; return -EBUSY;
...@@ -195,11 +195,13 @@ int misc_register(struct miscdevice * misc) ...@@ -195,11 +195,13 @@ int misc_register(struct miscdevice * misc)
} }
if (misc->minor < DYNAMIC_MINORS) if (misc->minor < DYNAMIC_MINORS)
misc_minors[misc->minor >> 3] |= 1 << (misc->minor & 7); misc_minors[misc->minor >> 3] |= 1 << (misc->minor & 7);
if (!devfs_handle)
devfs_handle = devfs_mk_dir("misc");
dir = strchr (misc->name, '/') ? NULL : devfs_handle; /* yuck, yet another stupid special-casing. We should rather
misc->devfs_handle = add ->devfs_name to avoid this mess. */
devfs_register (dir, misc->name, DEVFS_FL_NONE, snprintf(buf, sizeof(buf), strchr(misc->name, '/') ?
"%s" : "misc/%s", misc->name);
misc->devfs_handle = devfs_register(NULL, buf, 0,
MISC_MAJOR, misc->minor, MISC_MAJOR, misc->minor,
S_IFCHR | S_IRUSR | S_IWUSR | S_IRGRP, S_IFCHR | S_IRUSR | S_IWUSR | S_IRGRP,
misc->fops, NULL); misc->fops, NULL);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment