staging:wlags49_h2: Removed assignments from if statements.
The following coccinelle script found the match: @@ expression E0, E1, E2; statement S0, S1; @@ - if ((E1 = E2) != E0) + E1 = E2; + if (E1 != E0) S0 else S1 Signed-off-by: Chi Pham <fempsci@gmail.com> Acked-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com> Signed-off-by: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
This commit is contained in:
parent
0269298643
commit
b5bed1b6e1
@ -1528,7 +1528,8 @@ int wl_put_ltv( struct wl_private *lp )
|
||||
hcf_status = hcf_put_info( &lp->hcfCtx, (LTVP)&( lp->ltvRecord ));
|
||||
|
||||
/* Own Name (Station Nickname) */
|
||||
if (( len = ( strlen( lp->StationName ) + 1 ) & ~0x01 ) != 0 ) {
|
||||
len = (strlen(lp->StationName) + 1) & ~0x01;
|
||||
if (len != 0) {
|
||||
//DBG_TRACE( DbgInfo, "CFG_CNF_OWN_NAME : %s\n",
|
||||
// lp->StationName );
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user