Commit c6045d56 authored by Deepa Dinamani's avatar Deepa Dinamani Committed by Greg Kroah-Hartman
Browse files

staging: skein: remove extra indentation



Fix macros containing do/while blocks to be indented uniformly.

This patch fixes the checkpatch.pl warning:

WARNING: suspect code indent for conditional statements

Signed-off-by: default avatarDeepa Dinamani <deepa.kernel@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 7d27a184
Loading
Loading
Loading
Loading
+189 −189
Original line number Diff line number Diff line
@@ -310,23 +310,23 @@ do { \
#endif
#define R1024_8_ROUNDS(R)                                                 \
	do {                                                              \
	R1024(00, 01, 02, 03, 04, 05, 06, 07, 08, 09, 10, 11, 12, 13, 14, 15, \
	      R1024_0, 8*(R) + 1);                                            \
	R1024(00, 09, 02, 13, 06, 11, 04, 15, 10, 07, 12, 03, 14, 05, 08, 01, \
	      R1024_1, 8*(R) + 2);                                            \
	R1024(00, 07, 02, 05, 04, 03, 06, 01, 12, 15, 14, 13, 08, 11, 10, 09, \
	      R1024_2, 8*(R) + 3);                                            \
	R1024(00, 15, 02, 11, 06, 13, 04, 09, 14, 01, 08, 05, 10, 03, 12, 07, \
	      R1024_3, 8*(R) + 4);                                            \
		R1024(00, 01, 02, 03, 04, 05, 06, 07, 08, 09, 10, 11, 12, \
		      13, 14, 15, R1024_0, 8*(R) + 1);                    \
		R1024(00, 09, 02, 13, 06, 11, 04, 15, 10, 07, 12, 03, 14, \
		      05, 08, 01, R1024_1, 8*(R) + 2);                    \
		R1024(00, 07, 02, 05, 04, 03, 06, 01, 12, 15, 14, 13, 08, \
		      11, 10, 09, R1024_2, 8*(R) + 3);                    \
		R1024(00, 15, 02, 11, 06, 13, 04, 09, 14, 01, 08, 05, 10, \
		      03, 12, 07, R1024_3, 8*(R) + 4);                    \
		I1024(2*(R));                                             \
	R1024(00, 01, 02, 03, 04, 05, 06, 07, 08, 09, 10, 11, 12, 13, 14, 15, \
	      R1024_4, 8*(R) + 5);                                            \
	R1024(00, 09, 02, 13, 06, 11, 04, 15, 10, 07, 12, 03, 14, 05, 08, 01, \
	      R1024_5, 8*(R) + 6);                                            \
	R1024(00, 07, 02, 05, 04, 03, 06, 01, 12, 15, 14, 13, 08, 11, 10, 09, \
	      R1024_6, 8*(R) + 7);                                            \
	R1024(00, 15, 02, 11, 06, 13, 04, 09, 14, 01, 08, 05, 10, 03, 12, 07, \
	      R1024_7, 8*(R) + 8);                                            \
		R1024(00, 01, 02, 03, 04, 05, 06, 07, 08, 09, 10, 11, 12, \
		      13, 14, 15, R1024_4, 8*(R) + 5);                    \
		R1024(00, 09, 02, 13, 06, 11, 04, 15, 10, 07, 12, 03, 14, \
		      05, 08, 01, R1024_5, 8*(R) + 6);                    \
		R1024(00, 07, 02, 05, 04, 03, 06, 01, 12, 15, 14, 13, 08, \
		      11, 10, 09, R1024_6, 8*(R) + 7);                    \
		R1024(00, 15, 02, 11, 06, 13, 04, 09, 14, 01, 08, 05, 10, \
		      03, 12, 07, R1024_7, 8*(R) + 8);                    \
		I1024(2*(R)+1);                                           \
	} while (0)