mirror of
https://github.com/torvalds/linux.git
synced 2024-11-08 21:21:47 +00:00
Staging: brcm80211: simplify expression
Simplify: ((a && b) || !a) => (b || !a) Signed-off-by: Nicolas Kaiser <nikai@nikai.net> Cc: Brett Rudley <brudley@broadcom.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
a28792e786
commit
2578f7edf8
@ -669,7 +669,7 @@ bool wlc_ps_check(wlc_info_t *wlc)
|
||||
* may be either true or false due to the low level override.
|
||||
*/
|
||||
wake = STAY_AWAKE(wlc);
|
||||
wake_ok = (wake && ((tmp & MCTL_WAKE) != 0)) || !wake;
|
||||
wake_ok = ((tmp & MCTL_WAKE) != 0) || !wake;
|
||||
#endif
|
||||
if (hps && !wake_ok) {
|
||||
WL_ERROR(("wl%d: wake not sync, sw %d maccontrol 0x%x\n", wlc->pub->unit, wake, tmp));
|
||||
|
Loading…
Reference in New Issue
Block a user