dect
/
linux-2.6
Archived
13
0
Fork 0

arch/microblaze: Remove unnecessary semicolons

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Michal Simek <monstr@monstr.eu>
This commit is contained in:
Joe Perches 2010-11-14 19:04:21 -08:00 committed by Michal Simek
parent 0143832cc9
commit 473ff6609c
1 changed files with 1 additions and 1 deletions

View File

@ -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 */