Skip to content

Commit

Permalink
arch/microblaze: Remove unnecessary semicolons
Browse files Browse the repository at this point in the history
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Michal Simek <monstr@monstr.eu>
  • Loading branch information
Joe Perches authored and Michal Simek committed Nov 15, 2010
1 parent 0143832 commit 473ff66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/microblaze/lib/memmove.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand Down

0 comments on commit 473ff66

Please sign in to comment.