scsi: bfa: Remove unused misc code
Some more unused functions that didn't group elsewhere. Signed-off-by: Dr. David Alan Gilbert <linux@treblig.org> Link: https://lore.kernel.org/r/20240915125633.25036-6-linux@treblig.org Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:
parent
372dcc0161
commit
8d7cfe9521
|
|
@ -3412,15 +3412,6 @@ bfa_tskim_iocdisable_ios(struct bfa_tskim_s *tskim)
|
|||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Notification on completions from related ioim.
|
||||
*/
|
||||
void
|
||||
bfa_tskim_iodone(struct bfa_tskim_s *tskim)
|
||||
{
|
||||
bfa_wc_down(&tskim->wc);
|
||||
}
|
||||
|
||||
/*
|
||||
* Handle IOC h/w failure notification from itnim.
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -339,7 +339,6 @@ void bfa_ioim_tov(struct bfa_ioim_s *ioim);
|
|||
|
||||
void bfa_tskim_attach(struct bfa_fcpim_s *fcpim);
|
||||
void bfa_tskim_isr(struct bfa_s *bfa, struct bfi_msg_s *msg);
|
||||
void bfa_tskim_iodone(struct bfa_tskim_s *tskim);
|
||||
void bfa_tskim_iocdisable(struct bfa_tskim_s *tskim);
|
||||
void bfa_tskim_cleanup(struct bfa_tskim_s *tskim);
|
||||
void bfa_tskim_res_recfg(struct bfa_s *bfa, u16 num_tskim_fw);
|
||||
|
|
|
|||
|
|
@ -842,26 +842,6 @@ bfad_drv_init(struct bfad_s *bfad)
|
|||
return BFA_STATUS_OK;
|
||||
}
|
||||
|
||||
void
|
||||
bfad_drv_uninit(struct bfad_s *bfad)
|
||||
{
|
||||
unsigned long flags;
|
||||
|
||||
spin_lock_irqsave(&bfad->bfad_lock, flags);
|
||||
init_completion(&bfad->comp);
|
||||
bfa_iocfc_stop(&bfad->bfa);
|
||||
spin_unlock_irqrestore(&bfad->bfad_lock, flags);
|
||||
wait_for_completion(&bfad->comp);
|
||||
|
||||
del_timer_sync(&bfad->hal_tmo);
|
||||
bfa_isr_disable(&bfad->bfa);
|
||||
bfa_detach(&bfad->bfa);
|
||||
bfad_remove_intr(bfad);
|
||||
bfad_hal_mem_release(bfad);
|
||||
|
||||
bfad->bfad_flags &= ~BFAD_DRV_INIT_DONE;
|
||||
}
|
||||
|
||||
void
|
||||
bfad_drv_start(struct bfad_s *bfad)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -312,7 +312,6 @@ void bfad_bfa_tmo(struct timer_list *t);
|
|||
void bfad_init_timer(struct bfad_s *bfad);
|
||||
int bfad_pci_init(struct pci_dev *pdev, struct bfad_s *bfad);
|
||||
void bfad_pci_uninit(struct pci_dev *pdev, struct bfad_s *bfad);
|
||||
void bfad_drv_uninit(struct bfad_s *bfad);
|
||||
int bfad_worker(void *ptr);
|
||||
void bfad_debugfs_init(struct bfad_port_s *port);
|
||||
void bfad_debugfs_exit(struct bfad_port_s *port);
|
||||
|
|
|
|||
Loading…
Reference in New Issue