From: Burcin Akalin Date: Thu, 22 Oct 2015 13:25:08 +0000 (+0300) Subject: staging: skein: Add space around '%' X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=78b987879726ed61630e3ea0f567360138723e07;p=deliverable%2Flinux.git staging: skein: Add space around '%' Add space around operator '%'. Problem found using checkpatch.pl CHECK: spaces preferred around that '%' (ctx:VxV) Signed-off-by: Burcin Akalin Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/skein/skein_block.c b/drivers/staging/skein/skein_block.c index dda5c003ad31..45b47327e024 100644 --- a/drivers/staging/skein/skein_block.c +++ b/drivers/staging/skein/skein_block.c @@ -212,7 +212,7 @@ #undef RCNT #define RCNT (SKEIN_1024_ROUNDS_TOTAL/8) #ifdef SKEIN_LOOP /* configure how much to unroll the loop */ -#define SKEIN_UNROLL_1024 ((SKEIN_LOOP)%10) +#define SKEIN_UNROLL_1024 ((SKEIN_LOOP) % 10) #else #define SKEIN_UNROLL_1024 (0) #endif