diff options
author | Joe Perches <joe@perches.com> | 2010-11-14 19:04:21 -0800 |
---|---|---|
committer | Michal Simek <monstr@monstr.eu> | 2010-11-15 07:37:01 +0100 |
commit | 473ff6609c0778c5939164c5c57676b74164be71 (patch) | |
tree | 7c75bbcc4a8715b4851876ad97cf93c5bccd8139 /arch | |
parent | 0143832cc96d0bf78486297aad5c8fb2c2ead02a (diff) |
arch/microblaze: Remove unnecessary semicolons
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Michal Simek <monstr@monstr.eu>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/microblaze/lib/memmove.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/microblaze/lib/memmove.c b/arch/microblaze/lib/memmove.c index 123e3616f2d..810fd68775e 100644 --- a/arch/microblaze/lib/memmove.c +++ b/arch/microblaze/lib/memmove.c @@ -182,7 +182,7 @@ void *memmove(void *v_dst, const void *v_src, __kernel_size_t c) for (; c >= 4; c -= 4) { value = *--i_src; *--i_dst = buf_hold | ((value & 0xFF000000)>> 24); - buf_hold = (value & 0xFFFFFF) << 8;; + buf_hold = (value & 0xFFFFFF) << 8; } #endif /* Realign the source */ |