module.c: spelling s/postition/position/g
authorGeert Uytterhoeven <geert@linux-m68k.org>
Thu, 19 Jul 2012 20:29:11 +0000 (22:29 +0200)
committerJiri Kosina <jkosina@suse.cz>
Fri, 20 Jul 2012 08:38:35 +0000 (10:38 +0200)
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
arch/m68k/kernel/module.c
arch/x86/kernel/module.c

index 34849c4c6e3dabef02ad1c209c36a05c423bbb84..eb46fd6038cac73ab3b94b55d7c8e321f8b9ff00 100644 (file)
@@ -47,7 +47,7 @@ int apply_relocate(Elf32_Shdr *sechdrs,
                        *location += sym->st_value;
                        break;
                case R_68K_PC32:
-                       /* Add the value, subtract its postition */
+                       /* Add the value, subtract its position */
                        *location += sym->st_value - (uint32_t)location;
                        break;
                default:
@@ -87,7 +87,7 @@ int apply_relocate_add(Elf32_Shdr *sechdrs,
                        *location = rel[i].r_addend + sym->st_value;
                        break;
                case R_68K_PC32:
-                       /* Add the value, subtract its postition */
+                       /* Add the value, subtract its position */
                        *location = rel[i].r_addend + sym->st_value - (uint32_t)location;
                        break;
                default:
index f21fd94ac89700b912ce5392c1bc7381ced99601..772e7ad5dc299b785bc23181d1e9089cae3fa7ef 100644 (file)
@@ -73,7 +73,7 @@ int apply_relocate(Elf32_Shdr *sechdrs,
                        *location += sym->st_value;
                        break;
                case R_386_PC32:
-                       /* Add the value, subtract its postition */
+                       /* Add the value, subtract its position */
                        *location += sym->st_value - (uint32_t)location;
                        break;
                default: