summaryrefslogtreecommitdiffstats
path: root/net/netlink
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2000-06-25 01:20:01 +0000
committerRalf Baechle <ralf@linux-mips.org>2000-06-25 01:20:01 +0000
commit3797ba0b62debb71af4606910acacc9896a9ae3b (patch)
tree414eea76253c7871bfdf3bd9d1817771eb40917c /net/netlink
parent2b6c0c580795a4404f72d2a794214dd9e080709d (diff)
Merge with Linux 2.4.0-test2.
Diffstat (limited to 'net/netlink')
-rw-r--r--net/netlink/netlink_dev.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/net/netlink/netlink_dev.c b/net/netlink/netlink_dev.c
index b0eb9788e..4da257555 100644
--- a/net/netlink/netlink_dev.c
+++ b/net/netlink/netlink_dev.c
@@ -178,9 +178,9 @@ static devfs_handle_t devfs_handle = NULL;
static void __init make_devfs_entries (const char *name, int minor)
{
- devfs_register (devfs_handle, name, 0, DEVFS_FL_DEFAULT,
+ devfs_register (devfs_handle, name, DEVFS_FL_DEFAULT,
NETLINK_MAJOR, minor,
- S_IFCHR | S_IRUSR | S_IWUSR, 0, 0,
+ S_IFCHR | S_IRUSR | S_IWUSR,
&netlink_fops, NULL);
}
@@ -201,7 +201,7 @@ int __init init_netlink(void)
make_devfs_entries ("IP6_FW", 13);
devfs_register_series (devfs_handle, "tap%u", 16, DEVFS_FL_DEFAULT,
NETLINK_MAJOR, 16,
- S_IFCHR | S_IRUSR | S_IWUSR, 0, 0,
+ S_IFCHR | S_IRUSR | S_IWUSR,
&netlink_fops, NULL);
return 0;
}