projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
87253d1
)
x86: coding style fixes to arch/x86/lib/memmove_64.c
author
Paolo Ciarrocchi
<
[email protected]
>
Tue, 19 Feb 2008 19:53:38 +0000
(20:53 +0100)
committer
Ingo Molnar
<
[email protected]
>
Thu, 17 Apr 2008 15:40:48 +0000
(17:40 +0200)
After the patch:
total: 0 errors, 0 warnings, 21 lines checked
no code changed:
arch/x86/lib/memmove_64.o:
text data bss dec hex filename
116 0 0 116 74 memmove_64.o.before
116 0 0 116 74 memmove_64.o.after
md5:
2d6b0951cafb86a11a222cdd70f6104f
memmove_64.o.before.asm
2d6b0951cafb86a11a222cdd70f6104f
memmove_64.o.after.asm
Signed-off-by: Paolo Ciarrocchi <
[email protected]
>
Signed-off-by: Ingo Molnar <
[email protected]
>
arch/x86/lib/memmove_64.c
patch
|
blob
|
history
diff --git
a/arch/x86/lib/memmove_64.c
b/arch/x86/lib/memmove_64.c
index 80175e47b1902e4a3b5015599a5cc102e3922008..0a33909bf12213dbb0945d057e5c7c537296074e 100644
(file)
--- a/
arch/x86/lib/memmove_64.c
+++ b/
arch/x86/lib/memmove_64.c
@@
-6,10
+6,10
@@
#include <linux/module.h>
#undef memmove
-void *memmove(void *
dest,const void *src,
size_t count)
+void *memmove(void *
dest, const void *src,
size_t count)
{
- if (dest < src) {
- return memcpy(dest,
src,
count);
+ if (dest < src) {
+ return memcpy(dest,
src,
count);
} else {
char *p = dest + count;
const char *s = src + count;
@@
-17,5
+17,5
@@
void *memmove(void * dest,const void *src,size_t count)
*--p = *--s;
}
return dest;
-}
+}
EXPORT_SYMBOL(memmove);