aboutsummaryrefslogtreecommitdiffstats
path: root/fs/fat
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2012-01-08 16:21:22 -0500
committerLinus Torvalds <torvalds@linux-foundation.org>2012-01-08 16:21:22 -0500
commit98793265b429a3f0b3f1750e74d67cd4d740d162 (patch)
treeb0bd717673f0c21845cf053f3fb6b75d42530af5 /fs/fat
parentb4a133da2eaccb844a7beaef16ffd9c76a0d21d3 (diff)
parentbd1b2a555952d959f47169056fca05acf7eff81f (diff)
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial: (53 commits) Kconfig: acpi: Fix typo in comment. misc latin1 to utf8 conversions devres: Fix a typo in devm_kfree comment btrfs: free-space-cache.c: remove extra semicolon. fat: Spelling s/obsolate/obsolete/g SCSI, pmcraid: Fix spelling error in a pmcraid_err() call tools/power turbostat: update fields in manpage mac80211: drop spelling fix types.h: fix comment spelling for 'architectures' typo fixes: aera -> area, exntension -> extension devices.txt: Fix typo of 'VMware'. sis900: Fix enum typo 'sis900_rx_bufer_status' decompress_bunzip2: remove invalid vi modeline treewide: Fix comment and string typo 'bufer' hyper-v: Update MAINTAINERS treewide: Fix typos in various parts of the kernel, and fix some comments. clockevents: drop unknown Kconfig symbol GENERIC_CLOCKEVENTS_MIGR gpio: Kconfig: drop unknown symbol 'CS5535_GPIO' leds: Kconfig: Fix typo 'D2NET_V2' sound: Kconfig: drop unknown symbol ARCH_CLPS7500 ... Fix up trivial conflicts in arch/powerpc/platforms/40x/Kconfig (some new kconfig additions, close to removed commented-out old ones)
Diffstat (limited to 'fs/fat')
-rw-r--r--fs/fat/inode.c26
1 files changed, 13 insertions, 13 deletions
diff --git a/fs/fat/inode.c b/fs/fat/inode.c
index 7873797cc76a..3ab841054d53 100644
--- a/fs/fat/inode.c
+++ b/fs/fat/inode.c
@@ -897,7 +897,7 @@ enum {
897 Opt_charset, Opt_shortname_lower, Opt_shortname_win95, 897 Opt_charset, Opt_shortname_lower, Opt_shortname_win95,
898 Opt_shortname_winnt, Opt_shortname_mixed, Opt_utf8_no, Opt_utf8_yes, 898 Opt_shortname_winnt, Opt_shortname_mixed, Opt_utf8_no, Opt_utf8_yes,
899 Opt_uni_xl_no, Opt_uni_xl_yes, Opt_nonumtail_no, Opt_nonumtail_yes, 899 Opt_uni_xl_no, Opt_uni_xl_yes, Opt_nonumtail_no, Opt_nonumtail_yes,
900 Opt_obsolate, Opt_flush, Opt_tz_utc, Opt_rodir, Opt_err_cont, 900 Opt_obsolete, Opt_flush, Opt_tz_utc, Opt_rodir, Opt_err_cont,
901 Opt_err_panic, Opt_err_ro, Opt_discard, Opt_err, 901 Opt_err_panic, Opt_err_ro, Opt_discard, Opt_err,
902}; 902};
903 903
@@ -927,17 +927,17 @@ static const match_table_t fat_tokens = {
927 {Opt_err_panic, "errors=panic"}, 927 {Opt_err_panic, "errors=panic"},
928 {Opt_err_ro, "errors=remount-ro"}, 928 {Opt_err_ro, "errors=remount-ro"},
929 {Opt_discard, "discard"}, 929 {Opt_discard, "discard"},
930 {Opt_obsolate, "conv=binary"}, 930 {Opt_obsolete, "conv=binary"},
931 {Opt_obsolate, "conv=text"}, 931 {Opt_obsolete, "conv=text"},
932 {Opt_obsolate, "conv=auto"}, 932 {Opt_obsolete, "conv=auto"},
933 {Opt_obsolate, "conv=b"}, 933 {Opt_obsolete, "conv=b"},
934 {Opt_obsolate, "conv=t"}, 934 {Opt_obsolete, "conv=t"},
935 {Opt_obsolate, "conv=a"}, 935 {Opt_obsolete, "conv=a"},
936 {Opt_obsolate, "fat=%u"}, 936 {Opt_obsolete, "fat=%u"},
937 {Opt_obsolate, "blocksize=%u"}, 937 {Opt_obsolete, "blocksize=%u"},
938 {Opt_obsolate, "cvf_format=%20s"}, 938 {Opt_obsolete, "cvf_format=%20s"},
939 {Opt_obsolate, "cvf_options=%100s"}, 939 {Opt_obsolete, "cvf_options=%100s"},
940 {Opt_obsolate, "posix"}, 940 {Opt_obsolete, "posix"},
941 {Opt_err, NULL}, 941 {Opt_err, NULL},
942}; 942};
943static const match_table_t msdos_tokens = { 943static const match_table_t msdos_tokens = {
@@ -1169,7 +1169,7 @@ static int parse_options(struct super_block *sb, char *options, int is_vfat,
1169 break; 1169 break;
1170 1170
1171 /* obsolete mount options */ 1171 /* obsolete mount options */
1172 case Opt_obsolate: 1172 case Opt_obsolete:
1173 fat_msg(sb, KERN_INFO, "\"%s\" option is obsolete, " 1173 fat_msg(sb, KERN_INFO, "\"%s\" option is obsolete, "
1174 "not supported now", p); 1174 "not supported now", p);
1175 break; 1175 break;