diff options
author | Masanari Iida <standby24x7@gmail.com> | 2012-02-11 07:35:12 -0500 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2012-02-21 05:40:35 -0500 |
commit | 0cc785ecbf6c04c1ef01c311accee859c856a6b9 (patch) | |
tree | f508914d48689734bbbdb99c2a747bac6eb66b36 /fs/cramfs | |
parent | 7d65fd76e78f16be60ec01f11ce56969627e7b63 (diff) |
cramfs: Fix typo in inode.c
Correct spelling "endianess" to "endianness" in
fs/cramfs/inode.c
Signed-off-by: Masanari Iida <standby24x7@gmail.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'fs/cramfs')
-rw-r--r-- | fs/cramfs/inode.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/cramfs/inode.c b/fs/cramfs/inode.c index a2ee8f9f5a38..04d51f9333d7 100644 --- a/fs/cramfs/inode.c +++ b/fs/cramfs/inode.c | |||
@@ -257,10 +257,10 @@ static int cramfs_fill_super(struct super_block *sb, void *data, int silent) | |||
257 | 257 | ||
258 | /* Do sanity checks on the superblock */ | 258 | /* Do sanity checks on the superblock */ |
259 | if (super.magic != CRAMFS_MAGIC) { | 259 | if (super.magic != CRAMFS_MAGIC) { |
260 | /* check for wrong endianess */ | 260 | /* check for wrong endianness */ |
261 | if (super.magic == CRAMFS_MAGIC_WEND) { | 261 | if (super.magic == CRAMFS_MAGIC_WEND) { |
262 | if (!silent) | 262 | if (!silent) |
263 | printk(KERN_ERR "cramfs: wrong endianess\n"); | 263 | printk(KERN_ERR "cramfs: wrong endianness\n"); |
264 | goto out; | 264 | goto out; |
265 | } | 265 | } |
266 | 266 | ||
@@ -270,7 +270,7 @@ static int cramfs_fill_super(struct super_block *sb, void *data, int silent) | |||
270 | mutex_unlock(&read_mutex); | 270 | mutex_unlock(&read_mutex); |
271 | if (super.magic != CRAMFS_MAGIC) { | 271 | if (super.magic != CRAMFS_MAGIC) { |
272 | if (super.magic == CRAMFS_MAGIC_WEND && !silent) | 272 | if (super.magic == CRAMFS_MAGIC_WEND && !silent) |
273 | printk(KERN_ERR "cramfs: wrong endianess\n"); | 273 | printk(KERN_ERR "cramfs: wrong endianness\n"); |
274 | else if (!silent) | 274 | else if (!silent) |
275 | printk(KERN_ERR "cramfs: wrong magic\n"); | 275 | printk(KERN_ERR "cramfs: wrong magic\n"); |
276 | goto out; | 276 | goto out; |