aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/scsi/lpfc/lpfc_sli.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/scsi/lpfc/lpfc_sli.h')
-rw-r--r--drivers/scsi/lpfc/lpfc_sli.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/scsi/lpfc/lpfc_sli.h b/drivers/scsi/lpfc/lpfc_sli.h
index 10dd5a9ddfd3..eb6a689e52e1 100644
--- a/drivers/scsi/lpfc/lpfc_sli.h
+++ b/drivers/scsi/lpfc/lpfc_sli.h
@@ -68,6 +68,8 @@ struct lpfc_iocbq {
68#define IOCB_ERROR 2 68#define IOCB_ERROR 2
69#define IOCB_TIMEDOUT 3 69#define IOCB_TIMEDOUT 3
70 70
71#define LPFC_MBX_WAKE 1
72
71typedef struct lpfcMboxq { 73typedef struct lpfcMboxq {
72 /* MBOXQs are used in single linked lists */ 74 /* MBOXQs are used in single linked lists */
73 struct list_head list; /* ptr to next mailbox command */ 75 struct list_head list; /* ptr to next mailbox command */
@@ -76,6 +78,7 @@ typedef struct lpfcMboxq {
76 void *context2; /* caller context information */ 78 void *context2; /* caller context information */
77 79
78 void (*mbox_cmpl) (struct lpfc_hba *, struct lpfcMboxq *); 80 void (*mbox_cmpl) (struct lpfc_hba *, struct lpfcMboxq *);
81 uint8_t mbox_flag;
79 82
80} LPFC_MBOXQ_t; 83} LPFC_MBOXQ_t;
81 84