diff options
author | Jason Yan <[email protected]> | 2020-04-21 11:40:38 +0800 |
---|---|---|
committer | Martin K. Petersen <[email protected]> | 2020-04-24 18:21:16 -0400 |
commit | 9b77c9da6a1f0bd89f130710671b2396239b1ee4 (patch) | |
tree | a70ba0c4f1ddb77c9c738c071821b366b7010e04 | |
parent | 8d5e202802a5de1f81c445cacbb9359fcd4e6f23 (diff) |
scsi: qla4xxx: Remove unneeded semicolon in ql4_os.c
Fix the following coccicheck warning:
drivers/scsi/qla4xxx/ql4_os.c:969:3-4: 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/qla4xxx/ql4_os.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/qla4xxx/ql4_os.c b/drivers/scsi/qla4xxx/ql4_os.c index 5504ab11decc..5dc697ce8b5d 100644 --- a/drivers/scsi/qla4xxx/ql4_os.c +++ b/drivers/scsi/qla4xxx/ql4_os.c @@ -966,7 +966,7 @@ static int qla4xxx_set_chap_entry(struct Scsi_Host *shost, void *data, int len) "%s: No such sysfs attribute\n", __func__); rc = -ENOSYS; goto exit_set_chap; - }; + } } if (chap_rec.chap_type == CHAP_TYPE_IN) |