Commit d7b761b0 authored by YueHaibing's avatar YueHaibing Committed by Martin K. Petersen

scsi: lpfc: Make some symbols static

Fix sparse warnings:

drivers/scsi/lpfc/lpfc_sli.c:115:1: warning: symbol 'lpfc_sli4_pcimem_bcopy' was not declared. Should it be static?
drivers/scsi/lpfc/lpfc_sli.c:7854:1: warning: symbol 'lpfc_sli4_process_missed_mbox_completions' was not declared. Should it be static?
drivers/scsi/lpfc/lpfc_nvmet.c:223:27: warning: symbol 'lpfc_nvmet_get_ctx_for_xri' was not declared. Should it be static?
drivers/scsi/lpfc/lpfc_nvmet.c:245:27: warning: symbol 'lpfc_nvmet_get_ctx_for_oxid' was not declared. Should it be static?
drivers/scsi/lpfc/lpfc_init.c:75:10: warning: symbol 'lpfc_present_cpu' was not declared. Should it be static?
Reported-by: default avatarHulk Robot <hulkci@huawei.com>
Signed-off-by: default avatarYueHaibing <yuehaibing@huawei.com>
Acked-by: default avatarJames Smart <james.smart@broadcom.com>
Signed-off-by: default avatarMartin K. Petersen <martin.petersen@oracle.com>
parent a82b3539
...@@ -72,7 +72,7 @@ unsigned long _dump_buf_dif_order; ...@@ -72,7 +72,7 @@ unsigned long _dump_buf_dif_order;
spinlock_t _dump_buf_lock; spinlock_t _dump_buf_lock;
/* Used when mapping IRQ vectors in a driver centric manner */ /* Used when mapping IRQ vectors in a driver centric manner */
uint32_t lpfc_present_cpu; static uint32_t lpfc_present_cpu;
static void lpfc_get_hba_model_desc(struct lpfc_hba *, uint8_t *, uint8_t *); static void lpfc_get_hba_model_desc(struct lpfc_hba *, uint8_t *, uint8_t *);
static int lpfc_post_rcv_buf(struct lpfc_hba *); static int lpfc_post_rcv_buf(struct lpfc_hba *);
......
...@@ -220,7 +220,7 @@ lpfc_nvmet_cmd_template(void) ...@@ -220,7 +220,7 @@ lpfc_nvmet_cmd_template(void)
/* Word 12, 13, 14, 15 - is zero */ /* Word 12, 13, 14, 15 - is zero */
} }
struct lpfc_nvmet_rcv_ctx * static struct lpfc_nvmet_rcv_ctx *
lpfc_nvmet_get_ctx_for_xri(struct lpfc_hba *phba, u16 xri) lpfc_nvmet_get_ctx_for_xri(struct lpfc_hba *phba, u16 xri)
{ {
struct lpfc_nvmet_rcv_ctx *ctxp; struct lpfc_nvmet_rcv_ctx *ctxp;
...@@ -242,7 +242,7 @@ lpfc_nvmet_get_ctx_for_xri(struct lpfc_hba *phba, u16 xri) ...@@ -242,7 +242,7 @@ lpfc_nvmet_get_ctx_for_xri(struct lpfc_hba *phba, u16 xri)
return NULL; return NULL;
} }
struct lpfc_nvmet_rcv_ctx * static struct lpfc_nvmet_rcv_ctx *
lpfc_nvmet_get_ctx_for_oxid(struct lpfc_hba *phba, u16 oxid, u32 sid) lpfc_nvmet_get_ctx_for_oxid(struct lpfc_hba *phba, u16 oxid, u32 sid)
{ {
struct lpfc_nvmet_rcv_ctx *ctxp; struct lpfc_nvmet_rcv_ctx *ctxp;
......
...@@ -108,7 +108,7 @@ lpfc_get_iocb_from_iocbq(struct lpfc_iocbq *iocbq) ...@@ -108,7 +108,7 @@ lpfc_get_iocb_from_iocbq(struct lpfc_iocbq *iocbq)
* endianness. This function can be called with or without * endianness. This function can be called with or without
* lock. * lock.
**/ **/
void static void
lpfc_sli4_pcimem_bcopy(void *srcp, void *destp, uint32_t cnt) lpfc_sli4_pcimem_bcopy(void *srcp, void *destp, uint32_t cnt)
{ {
uint64_t *src = srcp; uint64_t *src = srcp;
...@@ -7859,7 +7859,7 @@ lpfc_sli4_mbox_completions_pending(struct lpfc_hba *phba) ...@@ -7859,7 +7859,7 @@ lpfc_sli4_mbox_completions_pending(struct lpfc_hba *phba)
* and will process all the completions associated with the eq for the * and will process all the completions associated with the eq for the
* mailbox completion queue. * mailbox completion queue.
**/ **/
bool static bool
lpfc_sli4_process_missed_mbox_completions(struct lpfc_hba *phba) lpfc_sli4_process_missed_mbox_completions(struct lpfc_hba *phba)
{ {
struct lpfc_sli4_hba *sli4_hba = &phba->sli4_hba; struct lpfc_sli4_hba *sli4_hba = &phba->sli4_hba;
......
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