Commit 0f7e51f6 authored by himanshu.madhani@cavium.com's avatar himanshu.madhani@cavium.com Committed by Martin K. Petersen

scsi: qla2xxx: Move function prototype to correct header

Cc: Johannes Thumshirn <jthumshirn@suse.de>
Signed-off-by: default avatarHimanshu Madhani <himanshu.madhani@cavium.com>
Reviewed-by: default avatarJohannes Thumshirn <jthumshirn@suse.de>
Signed-off-by: default avatarMartin K. Petersen <martin.petersen@oracle.com>
parent 6fcd98fd
...@@ -9,17 +9,6 @@ ...@@ -9,17 +9,6 @@
#include <linux/interrupt.h> #include <linux/interrupt.h>
/*
* Global functions prototype in qla_nvme.c source file.
*/
extern void qla_nvme_register_hba(scsi_qla_host_t *);
extern int qla_nvme_register_remote(scsi_qla_host_t *, fc_port_t *);
extern void qla_nvme_delete(scsi_qla_host_t *);
extern void qla_nvme_abort(struct qla_hw_data *, srb_t *sp);
extern void qla24xx_nvme_ls4_iocb(scsi_qla_host_t *, struct pt_ls4_request *,
struct req_que *);
extern void qla24xx_async_gffid_sp_done(void *, int);
/* /*
* Global Function Prototypes in qla_init.c source file. * Global Function Prototypes in qla_init.c source file.
*/ */
......
...@@ -2827,8 +2827,8 @@ qla24xx_abort_iocb_entry(scsi_qla_host_t *vha, struct req_que *req, ...@@ -2827,8 +2827,8 @@ qla24xx_abort_iocb_entry(scsi_qla_host_t *vha, struct req_que *req,
sp->done(sp, 0); sp->done(sp, 0);
} }
void qla24xx_nvme_ls4_iocb(scsi_qla_host_t *vha, struct pt_ls4_request *pkt, void qla24xx_nvme_ls4_iocb(struct scsi_qla_host *vha,
struct req_que *req) struct pt_ls4_request *pkt, struct req_que *req)
{ {
srb_t *sp; srb_t *sp;
const char func[] = "LS4_IOCB"; const char func[] = "LS4_IOCB";
......
...@@ -5,7 +5,6 @@ ...@@ -5,7 +5,6 @@
* See LICENSE.qla2xxx for copyright and licensing details. * See LICENSE.qla2xxx for copyright and licensing details.
*/ */
#include "qla_nvme.h" #include "qla_nvme.h"
#include "qla_def.h"
#include <linux/scatterlist.h> #include <linux/scatterlist.h>
#include <linux/delay.h> #include <linux/delay.h>
#include <linux/nvme.h> #include <linux/nvme.h>
...@@ -15,7 +14,7 @@ static struct nvme_fc_port_template qla_nvme_fc_transport; ...@@ -15,7 +14,7 @@ static struct nvme_fc_port_template qla_nvme_fc_transport;
static void qla_nvme_unregister_remote_port(struct work_struct *); static void qla_nvme_unregister_remote_port(struct work_struct *);
int qla_nvme_register_remote(scsi_qla_host_t *vha, fc_port_t *fcport) int qla_nvme_register_remote(struct scsi_qla_host *vha, struct fc_port *fcport)
{ {
struct nvme_rport *rport; struct nvme_rport *rport;
int ret; int ret;
...@@ -616,7 +615,7 @@ static int qla_nvme_wait_on_rport_del(fc_port_t *fcport) ...@@ -616,7 +615,7 @@ static int qla_nvme_wait_on_rport_del(fc_port_t *fcport)
return ret; return ret;
} }
void qla_nvme_abort(struct qla_hw_data *ha, srb_t *sp) void qla_nvme_abort(struct qla_hw_data *ha, struct srb *sp)
{ {
int rval; int rval;
...@@ -679,7 +678,7 @@ static void qla_nvme_unregister_remote_port(struct work_struct *work) ...@@ -679,7 +678,7 @@ static void qla_nvme_unregister_remote_port(struct work_struct *work)
} }
} }
void qla_nvme_delete(scsi_qla_host_t *vha) void qla_nvme_delete(struct scsi_qla_host *vha)
{ {
struct nvme_rport *rport, *trport; struct nvme_rport *rport, *trport;
fc_port_t *fcport; fc_port_t *fcport;
...@@ -711,7 +710,7 @@ void qla_nvme_delete(scsi_qla_host_t *vha) ...@@ -711,7 +710,7 @@ void qla_nvme_delete(scsi_qla_host_t *vha)
} }
} }
void qla_nvme_register_hba(scsi_qla_host_t *vha) void qla_nvme_register_hba(struct scsi_qla_host *vha)
{ {
struct nvme_fc_port_template *tmpl; struct nvme_fc_port_template *tmpl;
struct qla_hw_data *ha; struct qla_hw_data *ha;
......
...@@ -12,12 +12,18 @@ ...@@ -12,12 +12,18 @@
#include <uapi/scsi/fc/fc_els.h> #include <uapi/scsi/fc/fc_els.h>
#include <linux/nvme-fc-driver.h> #include <linux/nvme-fc-driver.h>
#include "qla_def.h"
#define NVME_ATIO_CMD_OFF 32 #define NVME_ATIO_CMD_OFF 32
#define NVME_FIRST_PACKET_CMDLEN (64 - NVME_ATIO_CMD_OFF) #define NVME_FIRST_PACKET_CMDLEN (64 - NVME_ATIO_CMD_OFF)
#define Q2T_NVME_NUM_TAGS 2048 #define Q2T_NVME_NUM_TAGS 2048
#define QLA_MAX_FC_SEGMENTS 64 #define QLA_MAX_FC_SEGMENTS 64
struct scsi_qla_host;
struct qla_hw_data;
struct req_que;
struct srb; struct srb;
struct nvme_private { struct nvme_private {
struct srb *sp; struct srb *sp;
struct nvmefc_ls_req *fd; struct nvmefc_ls_req *fd;
...@@ -129,4 +135,15 @@ struct pt_ls4_rx_unsol { ...@@ -129,4 +135,15 @@ struct pt_ls4_rx_unsol {
uint32_t desc_len; uint32_t desc_len;
uint32_t payload[3]; uint32_t payload[3];
}; };
/*
* Global functions prototype in qla_nvme.c source file.
*/
void qla_nvme_register_hba(struct scsi_qla_host *);
int qla_nvme_register_remote(struct scsi_qla_host *, struct fc_port *);
void qla_nvme_delete(struct scsi_qla_host *);
void qla_nvme_abort(struct qla_hw_data *, struct srb *sp);
void qla24xx_nvme_ls4_iocb(struct scsi_qla_host *, struct pt_ls4_request *,
struct req_que *);
void qla24xx_async_gffid_sp_done(void *, int);
#endif #endif
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment