From: Kevin Barnett <kevin.barn...@microsemi.com>

small change to make code look cleaner

Reviewed-by: Scott Teel <scott.t...@microsemi.com>
Reviewed-by: Scott Benesh <scott.ben...@microsemi.com>
Reviewed-by: Johannes Thumshirn <jthumsh...@suse.de>
Reviewed-by: Tomas Henzl <the...@redhat.com>
Signed-off-by: Kevin Barnett <kevin.barn...@microsemi.com>
Signed-off-by: Don Brace <don.br...@microsemi.com>
---
 drivers/scsi/smartpqi/smartpqi.h      |    6 ++----
 drivers/scsi/smartpqi/smartpqi_init.c |    4 ++--
 2 files changed, 4 insertions(+), 6 deletions(-)

diff --git a/drivers/scsi/smartpqi/smartpqi.h b/drivers/scsi/smartpqi/smartpqi.h
index ea49005..dbcdb03 100644
--- a/drivers/scsi/smartpqi/smartpqi.h
+++ b/drivers/scsi/smartpqi/smartpqi.h
@@ -545,10 +545,8 @@ typedef u32 pqi_index_t;
 #define SOP_TASK_ATTRIBUTE_ORDERED             2
 #define SOP_TASK_ATTRIBUTE_ACA                 4
 
-#define SOP_TASK_MANAGEMENT_FUNCTION_COMPLETE  0x0
-#define SOP_TASK_MANAGEMENT_FUNCTION_REJECTED  0x4
-#define SOP_TASK_MANAGEMENT_FUNCTION_FAILED    0x5
-#define SOP_TASK_MANAGEMENT_FUNCTION_SUCCEEDED 0x8
+#define SOP_TMF_COMPLETE               0x0
+#define SOP_TMF_FUNCTION_SUCCEEDED     0x8
 
 /* additional CDB bytes usage field codes */
 #define SOP_ADDITIONAL_CDB_BYTES_0     0       /* 16-byte CDB */
diff --git a/drivers/scsi/smartpqi/smartpqi_init.c 
b/drivers/scsi/smartpqi/smartpqi_init.c
index 418f636..6eab38e 100644
--- a/drivers/scsi/smartpqi/smartpqi_init.c
+++ b/drivers/scsi/smartpqi/smartpqi_init.c
@@ -2469,8 +2469,8 @@ static int pqi_interpret_task_management_response(
        int rc;
 
        switch (response->response_code) {
-       case SOP_TASK_MANAGEMENT_FUNCTION_COMPLETE:
-       case SOP_TASK_MANAGEMENT_FUNCTION_SUCCEEDED:
+       case SOP_TMF_COMPLETE:
+       case SOP_TMF_FUNCTION_SUCCEEDED:
                rc = 0;
                break;
        default:

--
To unsubscribe from this list: send the line "unsubscribe linux-scsi" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to