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 <develkernel412222@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
0c925aa043
commit
e31bbfcc44
1 changed files with 1 additions and 2 deletions
|
@ -1768,9 +1768,8 @@ void wl_wds_netif_carrier_off( struct wl_private *lp )
|
||||||
|
|
||||||
if( lp != NULL ) {
|
if( lp != NULL ) {
|
||||||
for( count = 0; count < NUM_WDS_PORTS; count++ ) {
|
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 );
|
netif_carrier_off( lp->wds_port[count].dev );
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue