]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
staging: vt6655: add spaces around '%' operator
authorMarko Stankovic <dartnorris@gmail.com>
Sat, 20 May 2017 16:50:37 +0000 (18:50 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 25 May 2017 16:56:44 +0000 (18:56 +0200)
Fix checkpatch issue by adding spaces around the '%' operator

Signed-off-by: Marko Stankovic <dartnorris@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/vt6655/card.c

index 5463cf869d1b645537cca121416eaf2b9669f08c..f5db2b3d9045b85293fac3872acb00e3fa26ffbf 100644 (file)
@@ -913,7 +913,7 @@ u64 CARDqGetTSFOffset(unsigned char byRxRate, u64 qwTSF1, u64 qwTSF2)
 {
        unsigned short wRxBcnTSFOffst;
 
-       wRxBcnTSFOffst = cwRXBCNTSFOff[byRxRate%MAX_RATE];
+       wRxBcnTSFOffst = cwRXBCNTSFOff[byRxRate % MAX_RATE];
 
        qwTSF2 += (u64)wRxBcnTSFOffst;