mirror of
https://github.com/SCST-project/scst.git
synced 2026-05-19 11:41:26 +00:00
Fixed the following checkpatch complaint:
ERROR: return is not a function, parentheses are not required git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@1172 d57e44dd-8a1f-0410-8b47-8ef2f437770f
This commit is contained in:
@@ -4182,14 +4182,14 @@ int qla2x00_issue_marker(scsi_qla_host_t *ha, int ha_locked)
|
||||
if (ha_locked) {
|
||||
if (__qla2x00_marker(ha, 0, 0, MK_SYNC_ALL) !=
|
||||
QLA_SUCCESS)
|
||||
return (QLA_FUNCTION_FAILED);
|
||||
return QLA_FUNCTION_FAILED;
|
||||
} else {
|
||||
if (qla2x00_marker(ha, 0, 0, MK_SYNC_ALL) !=
|
||||
QLA_SUCCESS)
|
||||
return (QLA_FUNCTION_FAILED);
|
||||
return QLA_FUNCTION_FAILED;
|
||||
}
|
||||
ha->marker_needed = 0;
|
||||
return (QLA_SUCCESS);
|
||||
return QLA_SUCCESS;
|
||||
}
|
||||
|
||||
int qla2xxx_tgt_register_driver(struct qla_tgt_initiator *tgt_data,
|
||||
|
||||
Reference in New Issue
Block a user