[PATCH 1/1] Staging: vt6655: fix brace coding style issue in ioctl.c

NG KIAN YONG ngky at comp.nus.edu.sg
Fri Apr 2 09:49:17 UTC 2010


>From f7413706dd9b5fc217aa738bb48d36b46ab65a98 Mon Sep 17 00:00:00 2001
From: Ng Kian Yong <ngky at comp.nus.edu.sg>
Date: Fri, 2 Apr 2010 17:20:06 +0800
Subject: [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 at comp.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





More information about the devel mailing list