From 8fb8e01e0ccd2207c08afc84fd110abef9700704 Mon Sep 17 00:00:00 2001 From: Bart Van Assche Date: Sat, 3 Oct 2009 13:16:03 +0000 Subject: [PATCH] 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 --- qla2x00t/qla_init.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/qla2x00t/qla_init.c b/qla2x00t/qla_init.c index a6001cff3..126d7e81d 100644 --- a/qla2x00t/qla_init.c +++ b/qla2x00t/qla_init.c @@ -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,