From commit 
9eed69a9147c ("i40e: Drop FCoE code from core driver files")
the field i40e_mac_info.san_addr is unused (never filled).
The field i40e_mac_info.max_fcoeq is unused from the beginning.
Remove both.
Reviewed-by: Wojciech Drewek <wojciech.drewek@intel.com>
Co-developed-by: Michal Schmidt <mschmidt@redhat.com>
Signed-off-by: Michal Schmidt <mschmidt@redhat.com>
Signed-off-by: Ivan Vecera <ivecera@redhat.com>
Tested-by: Pucha Himasekhar Reddy <himasekharx.reddy.pucha@intel.com> (A Contingent worker at Intel)
Signed-off-by: Tony Nguyen <anthony.l.nguyen@intel.com>
Link: https://lore.kernel.org/r/20231113231047.548659-16-anthony.l.nguyen@intel.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
                                        u8 *perm_addr)
 {
        struct i40e_pf *pf = i40e_netdev_to_pf(dev);
-       int i, j;
+       int i;
 
        memset(perm_addr, 0xff, MAX_ADDR_LEN);
 
        for (i = 0; i < dev->addr_len; i++)
                perm_addr[i] = pf->hw.mac.perm_addr[i];
-
-       for (j = 0; j < dev->addr_len; j++, i++)
-               perm_addr[i] = pf->hw.mac.san_addr[j];
 }
 
 static const struct dcbnl_rtnl_ops dcbnl_ops = {
 
                         "    state[%d] = %08lx\n",
                         i, vsi->state[i]);
        if (vsi == pf->vsi[pf->lan_vsi])
-               dev_info(&pf->pdev->dev, "    MAC address: %pM SAN MAC: %pM Port MAC: %pM\n",
+               dev_info(&pf->pdev->dev, "    MAC address: %pM Port MAC: %pM\n",
                         pf->hw.mac.addr,
-                        pf->hw.mac.san_addr,
                         pf->hw.mac.port_addr);
        hash_for_each(vsi->mac_filter_hash, bkt, f, hlist) {
                dev_info(&pf->pdev->dev,
 
        enum i40e_mac_type type;
        u8 addr[ETH_ALEN];
        u8 perm_addr[ETH_ALEN];
-       u8 san_addr[ETH_ALEN];
        u8 port_addr[ETH_ALEN];
-       u16 max_fcoeq;
 };
 
 enum i40e_aq_resources_ids {