]> pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
x86: coding style fixes to arch/x86/lib/strstr_3
authorPaolo Ciarrocchi <paolo.ciarrocchi@gmail.com>
Fri, 22 Feb 2008 22:09:56 +0000 (23:09 +0100)
committerIngo Molnar <mingo@elte.hu>
Thu, 17 Apr 2008 15:40:49 +0000 (17:40 +0200)
Before:
   total: 3 errors, 0 warnings, 31 lines checked
After:
   total: 0 errors, 0 warnings, 31 lines checked

No code changed:

arch/x86/lib/strstr_32.o:

   text    data     bss     dec     hex filename
     49       0       0      49      31 strstr_32.o.before
     49       0       0      49      31 strstr_32.o.after

md5:
   a224a7c4082e75a4f31f9d91dd34fe8e  strstr_32.o.before.asm
   a224a7c4082e75a4f31f9d91dd34fe8e  strstr_32.o.after.asm

Signed-off-by: Paolo Ciarrocchi <paolo.ciarrocchi@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
arch/x86/lib/strstr_32.c

index a3dafbf59daecb6fe9a8d27ea8bc44748a332708..42e8a50303f32d6000416dfd08c2caec942c20f4 100644 (file)
@@ -1,9 +1,9 @@
 #include <linux/string.h>
 
-char * strstr(const char * cs,const char * ct)
+char *strstr(const char *cs, const char *ct)
 {
 int    d0, d1;
-register char * __res;
+register char *__res;
 __asm__ __volatile__(
        "movl %6,%%edi\n\t"
        "repne\n\t"