mirror of
https://github.com/torvalds/linux.git
synced 2026-09-22 04:34:03 +02:00
scsi: dc395x: Remove unused variable 'fact'
The variable 'fact' was used for debug but this was removed in commit
62b434b0db ("scsi: dc395x: Remove DEBUG conditional compilation"). The
variable is now redundant and can be removed.
Cleans up clang scan build warning:
drivers/scsi/dc395x.c: In function ‘msgin_set_sync’:
drivers/scsi/dc395x.c:2185:13: warning: variable ‘fact’ set but not used [-Wunused-but-set-variable]
2185 | int fact;
Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Link: https://patch.msgid.link/20260714073510.43289-1-colin.i.king@gmail.com
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:
parent
51d1828266
commit
9b61402740
|
|
@ -2182,7 +2182,6 @@ static void msgin_set_sync(struct AdapterCtlBlk *acb, struct ScsiReqBlk *srb)
|
|||
{
|
||||
struct DeviceCtlBlk *dcb = srb->dcb;
|
||||
u8 bval;
|
||||
int fact;
|
||||
|
||||
if (srb->msgin_buf[4] > 15)
|
||||
srb->msgin_buf[4] = 15;
|
||||
|
|
@ -2205,11 +2204,6 @@ static void msgin_set_sync(struct AdapterCtlBlk *acb, struct ScsiReqBlk *srb)
|
|||
dcb->sync_period |= ALT_SYNC | bval;
|
||||
dcb->min_nego_period = srb->msgin_buf[3];
|
||||
|
||||
if (dcb->sync_period & WIDE_SYNC)
|
||||
fact = 500;
|
||||
else
|
||||
fact = 250;
|
||||
|
||||
if (!(srb->state & SRB_DO_SYNC_NEGO)) {
|
||||
/* Reply with corrected SDTR Message */
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user