]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
scsi: bfa: Remove unused bfa_core code
authorDr. David Alan Gilbert <linux@treblig.org>
Sun, 15 Sep 2024 12:56:29 +0000 (13:56 +0100)
committerMartin K. Petersen <martin.petersen@oracle.com>
Tue, 15 Oct 2024 21:11:55 +0000 (17:11 -0400)
bfa_get_pciids and bfa_cfg_get_min aren't called anywhere; remove them
together with the bfa_pciid_s used by bfa_get_pciids.

(Build tested, I don't have the card)

Signed-off-by: Dr. David Alan Gilbert <linux@treblig.org>
Link: https://lore.kernel.org/r/20240915125633.25036-2-linux@treblig.org
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
drivers/scsi/bfa/bfa.h
drivers/scsi/bfa/bfa_core.c

index 4cb9249e583ccccee2bae5763b0f847c1e3c810e..a6b8c4ddea19df8c11106b1c7b9ec9e3ac4c423e 100644 (file)
@@ -138,14 +138,6 @@ bfa_reqq_winit(struct bfa_reqq_wait_s *wqe, void (*qresume) (void *cbarg),
        } while (0)
 
 
-/*
- * PCI devices supported by the current BFA
- */
-struct bfa_pciid_s {
-       u16     device_id;
-       u16     vendor_id;
-};
-
 extern char     bfa_version[];
 
 struct bfa_iocfc_regs_s {
@@ -408,9 +400,7 @@ int bfa_iocfc_get_pbc_vports(struct bfa_s *bfa,
        (((&(_bfa)->modules.dconf_mod)->min_cfg)                \
         ? BFA_LUNMASK_MINCFG : ((bfa_get_lun_mask(_bfa))->status))
 
-void bfa_get_pciids(struct bfa_pciid_s **pciids, int *npciids);
 void bfa_cfg_get_default(struct bfa_iocfc_cfg_s *cfg);
-void bfa_cfg_get_min(struct bfa_iocfc_cfg_s *cfg);
 void bfa_cfg_get_meminfo(struct bfa_iocfc_cfg_s *cfg,
                        struct bfa_meminfo_s *meminfo,
                        struct bfa_s *bfa);
index 3438d0b8ba0624020a4c33e29656c0a55ef06070..a99a101b95efeef473e6a2a0193a969281ace238 100644 (file)
@@ -1933,24 +1933,6 @@ bfa_comp_free(struct bfa_s *bfa, struct list_head *comp_q)
        }
 }
 
-/*
- * Return the list of PCI vendor/device id lists supported by this
- * BFA instance.
- */
-void
-bfa_get_pciids(struct bfa_pciid_s **pciids, int *npciids)
-{
-       static struct bfa_pciid_s __pciids[] = {
-               {BFA_PCI_VENDOR_ID_BROCADE, BFA_PCI_DEVICE_ID_FC_8G2P},
-               {BFA_PCI_VENDOR_ID_BROCADE, BFA_PCI_DEVICE_ID_FC_8G1P},
-               {BFA_PCI_VENDOR_ID_BROCADE, BFA_PCI_DEVICE_ID_CT},
-               {BFA_PCI_VENDOR_ID_BROCADE, BFA_PCI_DEVICE_ID_CT_FC},
-       };
-
-       *npciids = ARRAY_SIZE(__pciids);
-       *pciids = __pciids;
-}
-
 /*
  * Use this function query the default struct bfa_iocfc_cfg_s value (compiled
  * into BFA layer). The OS driver can then turn back and overwrite entries that
@@ -1987,20 +1969,3 @@ bfa_cfg_get_default(struct bfa_iocfc_cfg_s *cfg)
        cfg->drvcfg.delay_comp = BFA_FALSE;
 
 }
-
-void
-bfa_cfg_get_min(struct bfa_iocfc_cfg_s *cfg)
-{
-       bfa_cfg_get_default(cfg);
-       cfg->fwcfg.num_ioim_reqs   = BFA_IOIM_MIN;
-       cfg->fwcfg.num_tskim_reqs  = BFA_TSKIM_MIN;
-       cfg->fwcfg.num_fcxp_reqs   = BFA_FCXP_MIN;
-       cfg->fwcfg.num_uf_bufs     = BFA_UF_MIN;
-       cfg->fwcfg.num_rports      = BFA_RPORT_MIN;
-       cfg->fwcfg.num_fwtio_reqs = 0;
-
-       cfg->drvcfg.num_sgpgs      = BFA_SGPG_MIN;
-       cfg->drvcfg.num_reqq_elems = BFA_REQQ_NELEMS_MIN;
-       cfg->drvcfg.num_rspq_elems = BFA_RSPQ_NELEMS_MIN;
-       cfg->drvcfg.min_cfg        = BFA_TRUE;
-}