From: Bryan Thompson Date: Thu, 6 Nov 2014 19:13:08 +0000 (-0500) Subject: staging: unisys: visorchannel: Place logical continuation at the end of a line X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=e3b7a4cacfcf6ffe6eb289628dd147b3202b5924;p=deliverable%2Flinux.git staging: unisys: visorchannel: Place logical continuation at the end of a line Move the || logical continuation from the start of the second line of an if statement to the end of the first line. Signed-off-by: Bryan Thompson Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/unisys/visorchannel/visorchannel_funcs.c b/drivers/staging/unisys/visorchannel/visorchannel_funcs.c index 66094a32f495..29efd4dd0e82 100644 --- a/drivers/staging/unisys/visorchannel/visorchannel_funcs.c +++ b/drivers/staging/unisys/visorchannel/visorchannel_funcs.c @@ -388,8 +388,8 @@ safe_sig_queue_validate(struct signal_queue_header *psafe_sqh, struct signal_queue_header *punsafe_sqh, u32 *phead, u32 *ptail) { - if ((*phead >= psafe_sqh->max_slots) - || (*ptail >= psafe_sqh->max_slots)) { + if ((*phead >= psafe_sqh->max_slots) || + (*ptail >= psafe_sqh->max_slots)) { /* Choose 0 or max, maybe based on current tail value */ *phead = 0; *ptail = 0;