diff options
| author | Marcel Holtmann <marcel@holtmann.org> | 2004-04-16 02:18:05 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2004-04-16 02:18:05 -0700 |
| commit | 757fd8a625124aa886ab31bcb62646da323b1bf8 (patch) | |
| tree | b418004c90d887db5457673afc5a0facdaa3ca53 | |
| parent | 0874802cd174e9770b98d8a10ea93aefd7323d85 (diff) | |
[PATCH] Fix typo in the openpromfs remount patch
The just merged openpromfs remount patch contains a silly typo in the
field of the super_operations structure.
Fixed like this.
| -rw-r--r-- | fs/openpromfs/inode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/openpromfs/inode.c b/fs/openpromfs/inode.c index 2b30a10324f9..28d8845537b9 100644 --- a/fs/openpromfs/inode.c +++ b/fs/openpromfs/inode.c @@ -1027,7 +1027,7 @@ static int openprom_remount(struct super_block *sb, int *flags, char *data) static struct super_operations openprom_sops = { .read_inode = openprom_read_inode, .statfs = simple_statfs, - .remount = openprom_remount, + .remount_fs = openprom_remount, }; static int openprom_fill_super(struct super_block *s, void *data, int silent) |
