[<prev] [next>] [day] [month] [year] [list]
Message-ID: <Pine.SOC.4.64.1004031707420.3242@sunfire0.comp.nus.edu.sg>
Date: Sat, 3 Apr 2010 17:09:34 +0800 (SGT)
From: NG KIAN YONG <ngky@...p.nus.edu.sg>
To: gregkh@...e.de, forest@...ttletooquiet.net, andre.goddard@...il.com
cc: devel@...verdev.osuosl.org, linux-kernel@...r.kernel.org,
ngky@...p.nus.edu.sg
Subject: [PATCH] Staging: vt6655: fix brace coding style issue in ioctl.c
>From f7413706dd9b5fc217aa738bb48d36b46ab65a98 Mon Sep 17 00:00:00 2001
From: Ng Kian Yong <ngky@...p.nus.edu.sg>
Date: Fri, 2 Apr 2010 17:20:06 +0800
Subject: [PATCH] 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@...p.nus.edu.sg>
---
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@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists