diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2000-03-27 23:54:12 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2000-03-27 23:54:12 +0000 |
commit | d3e71cb08747743fce908122bab08b479eb403a5 (patch) | |
tree | cbec6948fdbdee9af81cf3ecfb504070d2745d7b /fs/openpromfs/inode.c | |
parent | fe7ff1706e323d0e5ed83972960a1ecc1ee538b3 (diff) |
Merge with Linux 2.3.99-pre3.
Diffstat (limited to 'fs/openpromfs/inode.c')
-rw-r--r-- | fs/openpromfs/inode.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/fs/openpromfs/inode.c b/fs/openpromfs/inode.c index 27b4be8cb..92eed7559 100644 --- a/fs/openpromfs/inode.c +++ b/fs/openpromfs/inode.c @@ -1,4 +1,4 @@ -/* $Id: inode.c,v 1.9 2000/03/13 21:59:43 davem Exp $ +/* $Id: inode.c,v 1.10 2000/03/24 01:32:51 davem Exp $ * openpromfs.c: /proc/openprom handling routines * * Copyright (C) 1996-1999 Jakub Jelinek (jakub@redhat.com) @@ -980,10 +980,6 @@ static void openprom_read_inode(struct inode * inode) } } -static void openprom_put_super(struct super_block *sb) -{ -} - static int openprom_statfs(struct super_block *sb, struct statfs *buf) { buf->f_type = OPENPROM_SUPER_MAGIC; @@ -997,7 +993,6 @@ static int openprom_statfs(struct super_block *sb, struct statfs *buf) static struct super_operations openprom_sops = { read_inode: openprom_read_inode, - put_super: openprom_put_super, statfs: openprom_statfs, }; |