]> git.neil.brown.name Git - history.git/commitdiff
[PATCH] Fix typo in the openpromfs remount patch
authorMarcel Holtmann <marcel@holtmann.org>
Fri, 16 Apr 2004 09:18:05 +0000 (02:18 -0700)
committerLinus Torvalds <torvalds@ppc970.osdl.org>
Fri, 16 Apr 2004 09:18:05 +0000 (02:18 -0700)
The just merged openpromfs remount patch contains a silly typo in the
field of the super_operations structure.

Fixed like this.

fs/openpromfs/inode.c

index 2b30a10324f94888ba608cfc74349e72fa54c51a..28d8845537b9a92b375c16cfd44938307b429109 100644 (file)
@@ -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)