[PATCH] scsi: dc395x: Replace arithmetic addition by bitwise OR

From: Deepak R Varma
Date: Tue Feb 07 2023 - 03:50:49 EST


When adding two bit-field mask values, an OR operation offers higher
performance over an arithmetic operation.
Also, while at it, resolve the checkpatch incorrectly split line
warning.
Issue identified using orplus.cocci semantic patch script.

Signed-off-by: Deepak R Varma <drv@xxxxxxxxx>
---
drivers/scsi/dc395x.c | 11 +++++------
1 file changed, 5 insertions(+), 6 deletions(-)

diff --git a/drivers/scsi/dc395x.c b/drivers/scsi/dc395x.c
index 670a836a6ba1..e2adf8e84277 100644
--- a/drivers/scsi/dc395x.c
+++ b/drivers/scsi/dc395x.c
@@ -760,8 +760,7 @@ static void waiting_process_next(struct AdapterCtlBlk *acb)
struct ScsiReqBlk *srb;
struct list_head *dcb_list_head = &acb->dcb_list;

- if (acb->active_dcb
- || (acb->acb_flag & (RESET_DETECT + RESET_DONE + RESET_DEV)))
+ if (acb->active_dcb || (acb->acb_flag & (RESET_DETECT | RESET_DONE | RESET_DEV)))
return;

if (timer_pending(&acb->waiting_timer))
@@ -844,7 +843,7 @@ static void send_srb(struct AdapterCtlBlk *acb, struct ScsiReqBlk *srb)

if (dcb->max_command <= list_size(&dcb->srb_going_list) ||
acb->active_dcb ||
- (acb->acb_flag & (RESET_DETECT + RESET_DONE + RESET_DEV))) {
+ (acb->acb_flag & (RESET_DETECT | RESET_DONE | RESET_DEV))) {
list_add_tail(&srb->list, &dcb->srb_waiting_list);
waiting_process_next(acb);
return;
@@ -1125,7 +1124,7 @@ static void reset_dev_param(struct AdapterCtlBlk *acb)
list_for_each_entry(dcb, &acb->dcb_list, list) {
u8 period_index;

- dcb->sync_mode &= ~(SYNC_NEGO_DONE + WIDE_NEGO_DONE);
+ dcb->sync_mode &= ~(SYNC_NEGO_DONE | WIDE_NEGO_DONE);
dcb->sync_period = 0;
dcb->sync_offset = 0;

@@ -1683,7 +1682,7 @@ static void msgout_phase0(struct AdapterCtlBlk *acb, struct ScsiReqBlk *srb,
u16 *pscsi_status)
{
dprintkdbg(DBG_0, "msgout_phase0: (0x%p)\n", srb->cmd);
- if (srb->state & (SRB_UNEXPECT_RESEL + SRB_ABORT_SENT))
+ if (srb->state & (SRB_UNEXPECT_RESEL | SRB_ABORT_SENT))
*pscsi_status = PH_BUS_FREE; /*.. initial phase */

DC395x_write16(acb, TRM_S1040_SCSI_CONTROL, DO_DATALATCH); /* it's important for atn stop */
@@ -2899,7 +2898,7 @@ static void disconnect(struct AdapterCtlBlk *acb)
doing_srb_done(acb, DID_ABORT, srb->cmd, 1);
waiting_process_next(acb);
} else {
- if ((srb->state & (SRB_START_ + SRB_MSGOUT))
+ if ((srb->state & (SRB_START_ | SRB_MSGOUT))
|| !(srb->
state & (SRB_DISCONNECT | SRB_COMPLETED))) {
/*
--
2.34.1