Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

x86: coding style fixes to arch/x86/lib/strstr_32.c

Before:
total: 3 errors, 0 warnings, 31 lines checked

After:
total: 0 errors, 0 warnings, 31 lines checked

paolo@paolo-desktop:~/linux.trees.git$ md5sum /tmp/strstr_32.o.*
c96006ec3387862e5bacb139207a3098 /tmp/strstr_32.o.after
c96006ec3387862e5bacb139207a3098 /tmp/strstr_32.o.before

Signed-off-by: Paolo Ciarrocchi <paolo.ciarrocchi@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>

authored by

Paolo Ciarrocchi and committed by
Ingo Molnar
209b580f 2070dae1

+3 -3
+3 -3
arch/x86/lib/strstr_32.c
··· 23 23 "jne 1b\n\t" 24 24 "xorl %%eax,%%eax\n\t" 25 25 "2:" 26 - :"=a" (__res), "=&c" (d0), "=&S" (d1) 27 - :"0" (0), "1" (0xffffffff), "2" (cs), "g" (ct) 28 - :"dx", "di"); 26 + : "=a" (__res), "=&c" (d0), "=&S" (d1) 27 + : "0" (0), "1" (0xffffffff), "2" (cs), "g" (ct) 28 + : "dx", "di"); 29 29 return __res; 30 30 } 31 31