[PATCH 1/1] Staging: vt6655: fix brace coding style issue in ioctl.c This is a patch to the ioctl.c file that fixes up a brace warning found by the checkpatch.pl tool Signed-off-by: Ng Kian Yong <ngky@comp.nus.edu.sg>

From: Ng Kian Yong
Date: Fri Apr 02 2010 - 05:20:06 EST


---
drivers/staging/vt6655/ioctl.c | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/drivers/staging/vt6655/ioctl.c b/drivers/staging/vt6655/ioctl.c
index d9a5fd2..a15b953 100644
--- a/drivers/staging/vt6655/ioctl.c
+++ b/drivers/staging/vt6655/ioctl.c
@@ -54,14 +54,14 @@ static int msglevel =MSG_LEVEL_INFO;

/*--------------------- Export Variables --------------------------*/

-int private_ioctl(PSDevice pDevice, struct ifreq *rq) {
-
- PSCmdRequest pReq = (PSCmdRequest)rq;
+int private_ioctl(PSDevice pDevice, struct ifreq *rq)
+{
+ PSCmdRequest pReq = (PSCmdRequest)rq;
PSMgmtObject pMgmt = pDevice->pMgmt;
- int result = 0;
+ int result = 0;
PWLAN_IE_SSID pItemSSID;
SCmdBSSJoin sJoinCmd;
- SCmdZoneTypeSet sZoneTypeCmd;
+ SCmdZoneTypeSet sZoneTypeCmd;
SCmdScan sScanCmd;
SCmdStartAP sStartAPCmd;
SCmdSetWEP sWEPCmd;
@@ -83,7 +83,7 @@ int private_ioctl(PSDevice pDevice, struct ifreq *rq) {

pReq->wResult = 0;

- switch(pReq->wCmdCode) {
+ switch (pReq->wCmdCode) {

case WLAN_CMD_BSS_SCAN:

--
1.6.6.1


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/