diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2013-04-15 09:06:09 (GMT) |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2013-04-15 09:40:31 (GMT) |
commit | bb916ff7cda2ad52be433b7b1f355b79b5d7d5ee (patch) | |
tree | c6ce5e9e6df970cd9af203e2939e3e91d5df7ab5 /arch/x86/lib/memmove_64.S | |
parent | 73f460408ca9b6e917f32c89c9a85c586f17f732 (diff) | |
download | linux-bb916ff7cda2ad52be433b7b1f355b79b5d7d5ee.tar.xz |
x86/lib: Fix spelling in the comments
Apparently 'byts' should be 'bytes'.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Cc: H . Peter Anvin <hpa@linux.intel.com>
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'arch/x86/lib/memmove_64.S')
-rw-r--r-- | arch/x86/lib/memmove_64.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/lib/memmove_64.S b/arch/x86/lib/memmove_64.S index ee16461..f3d83cb 100644 --- a/arch/x86/lib/memmove_64.S +++ b/arch/x86/lib/memmove_64.S @@ -56,7 +56,7 @@ ENTRY(memmove) 3: sub $0x20, %rdx /* - * We gobble 32byts forward in each loop. + * We gobble 32 bytes forward in each loop. */ 5: sub $0x20, %rdx @@ -122,7 +122,7 @@ ENTRY(memmove) addq %rdx, %rdi subq $0x20, %rdx /* - * We gobble 32byts backward in each loop. + * We gobble 32 bytes backward in each loop. */ 8: subq $0x20, %rdx |