cramfs: Fix typo in inode.c
authorMasanari Iida <standby24x7@gmail.com>
Sat, 11 Feb 2012 12:35:12 +0000 (21:35 +0900)
committerJiri Kosina <jkosina@suse.cz>
Tue, 21 Feb 2012 10:40:35 +0000 (11:40 +0100)
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>
fs/cramfs/inode.c

index a2ee8f9f5a387ed683733d1f8d434357a31b138f..04d51f9333d73fa52a7f4b1b586ededdfbd63b79 100644 (file)
@@ -257,10 +257,10 @@ static int cramfs_fill_super(struct super_block *sb, void *data, int silent)
 
        /* Do sanity checks on the superblock */
        if (super.magic != CRAMFS_MAGIC) {
-               /* check for wrong endianess */
+               /* check for wrong endianness */
                if (super.magic == CRAMFS_MAGIC_WEND) {
                        if (!silent)
-                               printk(KERN_ERR "cramfs: wrong endianess\n");
+                               printk(KERN_ERR "cramfs: wrong endianness\n");
                        goto out;
                }
 
@@ -270,7 +270,7 @@ static int cramfs_fill_super(struct super_block *sb, void *data, int silent)
                mutex_unlock(&read_mutex);
                if (super.magic != CRAMFS_MAGIC) {
                        if (super.magic == CRAMFS_MAGIC_WEND && !silent)
-                               printk(KERN_ERR "cramfs: wrong endianess\n");
+                               printk(KERN_ERR "cramfs: wrong endianness\n");
                        else if (!silent)
                                printk(KERN_ERR "cramfs: wrong magic\n");
                        goto out;