From: Devendra Naga Date: Sat, 18 Aug 2012 18:54:07 +0000 (+0530) Subject: staging: wlags49_h2: coding style fix at wl_wds_netif_carrier_off X-Git-Tag: next-20120905~19^2~95 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=e31bbfcc44b5c8871c6633d0fe40723e4aefb222;p=karo-tx-linux.git staging: wlags49_h2: coding style fix at wl_wds_netif_carrier_off no braces needed for single statement if block Signed-off-by: Devendra Naga Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/wlags49_h2/wl_netdev.c b/drivers/staging/wlags49_h2/wl_netdev.c index 824b85232353..680de2bec038 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 ); - } } }