summaryrefslogtreecommitdiff
path: root/fs/devfs
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@athlon.transmeta.com>2002-02-04 18:12:47 -0800
committerLinus Torvalds <torvalds@athlon.transmeta.com>2002-02-04 18:12:47 -0800
commitd39a11f309a4fdeeed232dd6c0f00604d11a4aea (patch)
tree7a7f994448bd8f12ff077bbffb1dca345dfe8234 /fs/devfs
parent1a0153507ffae9cf3350e76c12d441788c0191e1 (diff)
v2.4.3.3 -> v2.4.3.4
- David Miller: sparc rw semaphores moved over - Alan Cox: yet more resyncs - NIIBE Yutaka: Super-H driver update - David Howells: more rw-sem cleanups, updates - USB updates - Al Viro: filesystem init cleanup
Diffstat (limited to 'fs/devfs')
-rw-r--r--fs/devfs/base.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/fs/devfs/base.c b/fs/devfs/base.c
index b26854355a70..5a494841141a 100644
--- a/fs/devfs/base.c
+++ b/fs/devfs/base.c
@@ -3339,7 +3339,7 @@ static int devfsd_close (struct inode *inode, struct file *file)
} /* End Function devfsd_close */
-int __init init_devfs_fs (void)
+static int __init init_devfs_fs (void)
{
int err;
@@ -3369,3 +3369,5 @@ void __init mount_devfs_fs (void)
if (err == 0) printk ("Mounted devfs on /dev\n");
else printk ("Warning: unable to mount devfs, err: %d\n", err);
} /* End Function mount_devfs_fs */
+
+module_init(init_devfs_fs)