Message ID | 20220128221909.8141-26-bvanassche@acm.org |
---|---|
State | Superseded |
Headers | show |
Series | Remove the SCSI pointer from struct scsi_cmnd | expand |
On Fri, 2022-01-28 at 14:18 -0800, Bart Van Assche wrote: > + readb(®s->interrupt); Again (void)readb(®s->interrupt); Oterwise Reviewed-by: Johannes Thumshirn <johannes.thumshirn@wdc.com>
On 1/31/22 03:21, Johannes Thumshirn wrote: > On Fri, 2022-01-28 at 14:18 -0800, Bart Van Assche wrote: >> + readb(®s->interrupt); > > Again > > (void)readb(®s->interrupt); I will make that change. Thanks, Bart.
diff --git a/drivers/scsi/mac53c94.c b/drivers/scsi/mac53c94.c index 3976a18f6333..cf81cbb0043a 100644 --- a/drivers/scsi/mac53c94.c +++ b/drivers/scsi/mac53c94.c @@ -125,7 +125,6 @@ static void mac53c94_init(struct fsc_state *state) { struct mac53c94_regs __iomem *regs = state->regs; struct dbdma_regs __iomem *dma = state->dma; - int x; writeb(state->host->this_id | CF1_PAR_ENABLE, ®s->config1); writeb(TIMO_VAL(250), ®s->sel_timeout); /* 250ms */ @@ -134,7 +133,7 @@ static void mac53c94_init(struct fsc_state *state) writeb(0, ®s->config3); writeb(0, ®s->sync_period); writeb(0, ®s->sync_offset); - x = readb(®s->interrupt); + readb(®s->interrupt); writel((RUN|PAUSE|FLUSH|WAKE) << 16, &dma->control); }
Fix the following compiler warning: drivers/scsi/mac53c94.c: In function 'mac53c94_init': drivers/scsi/mac53c94.c:128:13: warning: variable 'x' set but not used [-Wunused-but-set-variable] 128 | int x; Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org> Signed-off-by: Bart Van Assche <bvanassche@acm.org> --- drivers/scsi/mac53c94.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-)