x86: coding style fixes to arch/x86/lib/memmove_64.c
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 <paolo.ciarrocchi@gmail.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
committed by
Ingo Molnar
parent
87253d1b4f
commit
e940659788
@@ -6,10 +6,10 @@
|
|||||||
#include <linux/module.h>
|
#include <linux/module.h>
|
||||||
|
|
||||||
#undef memmove
|
#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) {
|
if (dest < src) {
|
||||||
return memcpy(dest,src,count);
|
return memcpy(dest, src, count);
|
||||||
} else {
|
} else {
|
||||||
char *p = dest + count;
|
char *p = dest + count;
|
||||||
const char *s = src + count;
|
const char *s = src + count;
|
||||||
@@ -17,5 +17,5 @@ void *memmove(void * dest,const void *src,size_t count)
|
|||||||
*--p = *--s;
|
*--p = *--s;
|
||||||
}
|
}
|
||||||
return dest;
|
return dest;
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL(memmove);
|
EXPORT_SYMBOL(memmove);
|
||||||
|
Reference in New Issue
Block a user