Commit 757fd8a6 authored by Marcel Holtmann's avatar Marcel Holtmann Committed by Linus Torvalds

[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.
parent 0874802c
......@@ -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)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment