From: Alison Schofield Date: Wed, 21 Oct 2015 06:08:27 +0000 (-0700) Subject: staging: r8723au: move constant to right of comparison test X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=c12e8dba0ebfcfe398e520ecbb3f1cb97b6d1a6c;p=linux-beck.git staging: r8723au: move constant to right of comparison test Move constant to right of comparison test to improve readability. Addresses checkpatch.pl: WARNING: Comparisons should place the constant on the right side of the test Signed-off-by: Alison Schofield Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/rtl8723au/core/rtw_cmd.c b/drivers/staging/rtl8723au/core/rtw_cmd.c index d3479e1544eb..f8f637685986 100644 --- a/drivers/staging/rtl8723au/core/rtw_cmd.c +++ b/drivers/staging/rtl8723au/core/rtw_cmd.c @@ -621,7 +621,7 @@ int rtw_disassoc_cmd23a(struct rtw_adapter *padapter, u32 deauth_timeout_ms, } else { /* no need to enqueue, do the cmd hdl directly and free cmd parameter */ - if (H2C_SUCCESS != disconnect_hdl23a(padapter, (u8 *)param)) + if (disconnect_hdl23a(padapter, (u8 *)param) != H2C_SUCCESS) res = _FAIL; kfree(param); }