diff options
author | Jason Yan <[email protected]> | 2020-04-21 11:40:29 +0800 |
---|---|---|
committer | Martin K. Petersen <[email protected]> | 2020-04-24 18:21:29 -0400 |
commit | f371d53453772bcbb9ac2201029b66281f713c07 (patch) | |
tree | 54fc3dd1e68ce3ea32900621b2251aaa810be96e | |
parent | 9b77c9da6a1f0bd89f130710671b2396239b1ee4 (diff) |
scsi: sgiwd93: Remove unneeded semicolon in sgiwd93.c
Fix the following coccicheck warning:
drivers/scsi/sgiwd93.c:190:2-3: Unneeded semicolon
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Jason Yan <[email protected]>
Signed-off-by: Martin K. Petersen <[email protected]>
-rw-r--r-- | drivers/scsi/sgiwd93.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/sgiwd93.c b/drivers/scsi/sgiwd93.c index 713bce998b0e..3bdf0deb8f15 100644 --- a/drivers/scsi/sgiwd93.c +++ b/drivers/scsi/sgiwd93.c @@ -187,7 +187,7 @@ static inline void init_hpc_chain(struct ip22_hostdata *hdata) hcp++; dma += sizeof(struct hpc_chunk); start += sizeof(struct hpc_chunk); - }; + } hcp--; hcp->desc.pnext = hdata->dma; } |