Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1646159 > unrolled thread

[PATCH] staging: vt6655: add spaces around '%' operator

Started byMarko Stankovic <dartnorris@gmail.com>
First post2017-05-20 19:00 +0200
Last post2017-05-20 19:00 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel


Contents

  [PATCH] staging: vt6655: add spaces around '%' operator Marko Stankovic <dartnorris@gmail.com> - 2017-05-20 19:00 +0200

#1646159 — [PATCH] staging: vt6655: add spaces around '%' operator

FromMarko Stankovic <dartnorris@gmail.com>
Date2017-05-20 19:00 +0200
Subject[PATCH] staging: vt6655: add spaces around '%' operator
Message-ID<tJfTr-3Yx-7@gated-at.bofh.it>
Fix checkpatch issue by adding spaces around the '%' operator

Signed-off-by: Marko Stankovic <dartnorris@gmail.com>
---
 drivers/staging/vt6655/card.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/vt6655/card.c b/drivers/staging/vt6655/card.c
index 5463cf869d1b..f5db2b3d9045 100644
--- a/drivers/staging/vt6655/card.c
+++ b/drivers/staging/vt6655/card.c
@@ -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;
 
-- 
2.11.0

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web