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:
e0f0257
)
x86: coding style fixes to arch/x86/lib/memcpy_32.c
author
Paolo Ciarrocchi
<
[email protected]
>
Fri, 22 Feb 2008 22:10:23 +0000
(23:10 +0100)
committer
Ingo Molnar
<
[email protected]
>
Thu, 17 Apr 2008 15:40:49 +0000
(17:40 +0200)
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 <
[email protected]
>
Signed-off-by: Ingo Molnar <
[email protected]
>
arch/x86/lib/memcpy_32.c
patch
|
blob
|
history
diff --git
a/arch/x86/lib/memcpy_32.c
b/arch/x86/lib/memcpy_32.c
index 37756b6fb32992c5d703b5ccacf9fd02661213a1..5415a9d06f53b75c4a993b0bbe96508502691142 100644
(file)
--- a/
arch/x86/lib/memcpy_32.c
+++ b/
arch/x86/lib/memcpy_32.c
@@
-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"