Skip to content

Commit

Permalink
x86: coding style fixes to arch/x86/lib/memcpy_32.c
Browse files Browse the repository at this point in the history
Before:
   total: 2 errors, 0 warnings, 43 lines checked
After:
   total: 0 errors, 0 warnings, 43 lines checked

No code changed:

arch/x86/lib/memcpy_32.o:

   text	   data	    bss	    dec	    hex	filename
    164	      0	      0	    164	     a4	memcpy_32.o.before
    164	      0	      0	    164	     a4	memcpy_32.o.after

md5:
   d759f55621af27f51720b59c8ca96a4d  memcpy_32.o.before.asm
   d759f55621af27f51720b59c8ca96a4d  memcpy_32.o.after.asm

Signed-off-by: Paolo Ciarrocchi <paolo.ciarrocchi@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
  • Loading branch information
Paolo Ciarrocchi authored and Ingo Molnar committed Apr 17, 2008
1 parent e0f0257 commit 93d8bd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/x86/lib/memcpy_32.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ void *memmove(void *dest, const void *src, size_t n)
int d0, d1, d2;

if (dest < src) {
memcpy(dest,src,n);
memcpy(dest, src, n);
} else {
__asm__ __volatile__(
"std\n\t"
Expand Down

0 comments on commit 93d8bd3

Please sign in to comment.