summaryrefslogtreecommitdiffstats
path: root/drivers/staging/vt6655/wmgr.c
diff options
context:
space:
mode:
authorGuillaume Clement <gclement@baobob.org>2014-07-25 01:06:25 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-07-27 11:21:28 -0700
commitcba60905f19f70858556c081571cdd8fca546851 (patch)
treea592d9843430ab5e936a79049ddfc9c77fdfb652 /drivers/staging/vt6655/wmgr.c
parentfa13849f58dcecbb14ce9f40a15b8c9b26df004d (diff)
staging: vt6655: remove braces for single statements if
This fixes several "braces {} are not necessary for single statement blocks" checkpatch warnings. Signed-off-by: Guillaume Clement <gclement@baobob.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/vt6655/wmgr.c')
-rw-r--r--drivers/staging/vt6655/wmgr.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/staging/vt6655/wmgr.c b/drivers/staging/vt6655/wmgr.c
index 57373c9adec..e88e11606db 100644
--- a/drivers/staging/vt6655/wmgr.c
+++ b/drivers/staging/vt6655/wmgr.c
@@ -4114,9 +4114,8 @@ s_vMgrRxProbeRequest(
if (pTxPacket != NULL) {
/* send the frame */
Status = csMgmt_xmit(pDevice, pTxPacket);
- if (Status != CMD_STATUS_PENDING) {
+ if (Status != CMD_STATUS_PENDING)
DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO "Mgt:Probe response tx failed\n");
- }
}
}
}