forked from Minki/linux
staging/rdma/hfi1: diag.c fix logical continuations
Place logical operators at the end of the previous line when using a multi-line statement. Found by checkpatch --strict Signed-off-by: Ira Weiny <ira.weiny@intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
cce6bd86cb
commit
f398ab17b2
@ -538,9 +538,9 @@ retry:
|
||||
* NOTE: PRC_FILL_ERR is at best informational and cannot
|
||||
* be depended on.
|
||||
*/
|
||||
if (!ret && (((wait->code & PRC_STATUS_ERR)
|
||||
|| (wait->code & PRC_FILL_ERR)
|
||||
|| (wait->code & PRC_SC_DISABLE))))
|
||||
if (!ret && (((wait->code & PRC_STATUS_ERR) ||
|
||||
(wait->code & PRC_FILL_ERR) ||
|
||||
(wait->code & PRC_SC_DISABLE))))
|
||||
ret = -EIO;
|
||||
|
||||
put_diagpkt_wait(wait); /* finished with the structure */
|
||||
|
Loading…
Reference in New Issue
Block a user