summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSudarsana Reddy Kalluru <sudarsana.kalluru@cavium.com>2018-05-05 18:43:00 -0700
committerDavid S. Miller <davem@davemloft.net>2018-05-07 23:46:10 -0400
commit27bf96e32c92599dc7523b36d6c761fc8312c8c0 (patch)
tree767e40c3b4292b5484b90fe0f9a34227d13f60b2
parent0bc5fe857274133ca028ebb15ff2e8549a369916 (diff)
downloadlinux-27bf96e32c92599dc7523b36d6c761fc8312c8c0.tar.gz
linux-27bf96e32c92599dc7523b36d6c761fc8312c8c0.tar.bz2
linux-27bf96e32c92599dc7523b36d6c761fc8312c8c0.zip
qed: Remove unused data member 'is_mf_default'.
The data member 'is_mf_default' is not used by the qed/qede drivers, removing the same. Signed-off-by: Sudarsana Reddy Kalluru <Sudarsana.Kalluru@cavium.com> Signed-off-by: Ariel Elior <ariel.elior@cavium.com> Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r--drivers/net/ethernet/qlogic/qed/qed_main.c2
-rw-r--r--include/linux/qed/qed_if.h1
2 files changed, 0 insertions, 3 deletions
diff --git a/drivers/net/ethernet/qlogic/qed/qed_main.c b/drivers/net/ethernet/qlogic/qed/qed_main.c
index 307fe33d75c8..70bc5634675c 100644
--- a/drivers/net/ethernet/qlogic/qed/qed_main.c
+++ b/drivers/net/ethernet/qlogic/qed/qed_main.c
@@ -264,8 +264,6 @@ int qed_fill_dev_info(struct qed_dev *cdev,
dev_info->pci_mem_end = cdev->pci_params.mem_end;
dev_info->pci_irq = cdev->pci_params.irq;
dev_info->rdma_supported = QED_IS_RDMA_PERSONALITY(p_hwfn);
- dev_info->is_mf_default = !test_bit(QED_MF_LLH_MAC_CLSS,
- &cdev->mf_bits);
dev_info->dev_type = cdev->type;
ether_addr_copy(dev_info->hw_mac, hw_info->hw_mac_addr);
diff --git a/include/linux/qed/qed_if.h b/include/linux/qed/qed_if.h
index 5dac56147a07..907976fd56f7 100644
--- a/include/linux/qed/qed_if.h
+++ b/include/linux/qed/qed_if.h
@@ -339,7 +339,6 @@ struct qed_dev_info {
u8 num_hwfns;
u8 hw_mac[ETH_ALEN];
- bool is_mf_default;
/* FW version */
u16 fw_major;