Commit 70c8bc2b authored by Art Haas's avatar Art Haas Committed by David Woodhouse

[PATCH] C99 initializer for fs/sysv/super.c

parent b46c92d9
...@@ -274,21 +274,21 @@ static struct { ...@@ -274,21 +274,21 @@ static struct {
}; };
static char *flavour_names[] = { static char *flavour_names[] = {
[FSTYPE_XENIX] "Xenix", [FSTYPE_XENIX] = "Xenix",
[FSTYPE_SYSV4] "SystemV", [FSTYPE_SYSV4] = "SystemV",
[FSTYPE_SYSV2] "SystemV Release 2", [FSTYPE_SYSV2] = "SystemV Release 2",
[FSTYPE_COH] "Coherent", [FSTYPE_COH] = "Coherent",
[FSTYPE_V7] "V7", [FSTYPE_V7] = "V7",
[FSTYPE_AFS] "AFS", [FSTYPE_AFS] = "AFS",
}; };
static void (*flavour_setup[])(struct sysv_sb_info *) = { static void (*flavour_setup[])(struct sysv_sb_info *) = {
[FSTYPE_XENIX] detected_xenix, [FSTYPE_XENIX] = detected_xenix,
[FSTYPE_SYSV4] detected_sysv4, [FSTYPE_SYSV4] = detected_sysv4,
[FSTYPE_SYSV2] detected_sysv2, [FSTYPE_SYSV2] = detected_sysv2,
[FSTYPE_COH] detected_coherent, [FSTYPE_COH] = detected_coherent,
[FSTYPE_V7] detected_v7, [FSTYPE_V7] = detected_v7,
[FSTYPE_AFS] detected_sysv4, [FSTYPE_AFS] = detected_sysv4,
}; };
static int complete_read_super(struct super_block *sb, int silent, int size) static int complete_read_super(struct super_block *sb, int silent, int size)
......
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