Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1646159 > unrolled thread
| Started by | Marko Stankovic <dartnorris@gmail.com> |
|---|---|
| First post | 2017-05-20 19:00 +0200 |
| Last post | 2017-05-20 19:00 +0200 |
| Articles | 1 — 1 participant |
Back to article view | Back to linux.kernel
[PATCH] staging: vt6655: add spaces around '%' operator Marko Stankovic <dartnorris@gmail.com> - 2017-05-20 19:00 +0200
| From | Marko Stankovic <dartnorris@gmail.com> |
|---|---|
| Date | 2017-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
Back to top | Article view | linux.kernel
csiph-web