[PATCH 1/6] staging: wlags49_h2: coding style fix at wl_wds_netif_carrier_off

Devendra Naga develkernel412222 at gmail.com
Sat Aug 18 18:54:07 UTC 2012


no braces needed for single statement if block

Signed-off-by: Devendra Naga <develkernel412222 at gmail.com>
---
 drivers/staging/wlags49_h2/wl_netdev.c |    3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/drivers/staging/wlags49_h2/wl_netdev.c b/drivers/staging/wlags49_h2/wl_netdev.c
index 824b852..680de2b 100644
--- a/drivers/staging/wlags49_h2/wl_netdev.c
+++ b/drivers/staging/wlags49_h2/wl_netdev.c
@@ -1768,9 +1768,8 @@ void wl_wds_netif_carrier_off( struct wl_private *lp )
 
     if( lp != NULL ) {
         for( count = 0; count < NUM_WDS_PORTS; count++ ) {
-            if( lp->wds_port[count].is_registered ) {
+            if( lp->wds_port[count].is_registered )
                 netif_carrier_off( lp->wds_port[count].dev );
-            }
         }
     }
 
-- 
1.7.9.5




More information about the devel mailing list