diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2013-04-15 12:06:09 +0300 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2013-04-15 11:40:31 +0200 |
commit | bb916ff7cda2ad52be433b7b1f355b79b5d7d5ee (patch) | |
tree | c6ce5e9e6df970cd9af203e2939e3e91d5df7ab5 /arch/x86/lib/memcpy_32.c | |
parent | 73f460408ca9b6e917f32c89c9a85c586f17f732 (diff) | |
download | linux-bb916ff7cda2ad52be433b7b1f355b79b5d7d5ee.tar.bz2 |
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/memcpy_32.c')
-rw-r--r-- | arch/x86/lib/memcpy_32.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/lib/memcpy_32.c b/arch/x86/lib/memcpy_32.c index b908a59eccf5..20b0eaf14c60 100644 --- a/arch/x86/lib/memcpy_32.c +++ b/arch/x86/lib/memcpy_32.c @@ -51,7 +51,7 @@ void *memmove(void *dest, const void *src, size_t n) "sub $0x10, %0\n\t" /* - * We gobble 16byts forward in each loop. + * We gobble 16 bytes forward in each loop. */ "3:\n\t" "sub $0x10, %0\n\t" @@ -117,7 +117,7 @@ void *memmove(void *dest, const void *src, size_t n) "sub $0x10, %0\n\t" /* - * We gobble 16byts backward in each loop. + * We gobble 16 bytes backward in each loop. */ "7:\n\t" "sub $0x10, %0\n\t" |