Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 473ff660 authored by Joe Perches's avatar Joe Perches Committed by Michal Simek
Browse files

arch/microblaze: Remove unnecessary semicolons



Signed-off-by: default avatarJoe Perches <joe@perches.com>
Signed-off-by: default avatarMichal Simek <monstr@monstr.eu>
parent 0143832c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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 */