summaryrefslogtreecommitdiff
path: root/arch/microblaze/lib
diff options
context:
space:
mode:
authorJulia Lawall <Julia.Lawall@inria.fr>2022-04-30 22:11:15 +0300
committerMichal Simek <michal.simek@amd.com>2022-05-02 09:36:10 +0300
commit78b5f52ab6f6074a6fe2f27122e2165f32d6a143 (patch)
tree552e9e23ef089cdeed1e66c4029a4e1cc4c64922 /arch/microblaze/lib
parent68cbfae83a7208d960034813c4744bf9651a725d (diff)
downloadlinux-78b5f52ab6f6074a6fe2f27122e2165f32d6a143.tar.xz
microblaze: fix typos in comments
Various spelling mistakes in comments. Detected with the help of Coccinelle. Signed-off-by: Julia Lawall <Julia.Lawall@inria.fr> Link: https://lore.kernel.org/r/20220430191122.8667-1-Julia.Lawall@inria.fr Signed-off-by: Michal Simek <michal.simek@amd.com>
Diffstat (limited to 'arch/microblaze/lib')
-rw-r--r--arch/microblaze/lib/memmove.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/microblaze/lib/memmove.c b/arch/microblaze/lib/memmove.c
index 2e49d0ef1e07..c1f08c484e20 100644
--- a/arch/microblaze/lib/memmove.c
+++ b/arch/microblaze/lib/memmove.c
@@ -78,7 +78,7 @@ void *memmove(void *v_dst, const void *v_src, __kernel_size_t c)
i_dst = (void *)dst;
/* Choose a copy scheme based on the source */
- /* alignment relative to dstination. */
+ /* alignment relative to destination. */
switch ((unsigned long)src & 3) {
case 0x0: /* Both byte offsets are aligned */