forked from Minki/linux
staging:vt6656: Removed assignment in if statement.
The following coccinelle script found the match: @@ expression E0, E1, E2; statement S0; @@ - if ((E1 = E2) == E0) + E1 = E2; + if (E1 == E0) S0 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
9b6f0c4b98
commit
9eac685dbc
@ -1395,7 +1395,8 @@ int iwctl_giwpower(struct net_device *dev, struct iw_request_info *info,
|
||||
if (pMgmt == NULL)
|
||||
return -EFAULT;
|
||||
|
||||
if ((wrq->disabled = (mode == WMAC_POWER_CAM)))
|
||||
wrq->disabled = (mode == WMAC_POWER_CAM);
|
||||
if (wrq->disabled)
|
||||
return 0;
|
||||
|
||||
if ((wrq->flags & IW_POWER_TYPE) == IW_POWER_TIMEOUT) {
|
||||
|
Loading…
Reference in New Issue
Block a user