OSDN Git Service

liquidio: remove redundant function cn23xx_dump_iq_regs
authorYueHaibing <yuehaibing@huawei.com>
Mon, 30 Jul 2018 11:03:41 +0000 (19:03 +0800)
committerDavid S. Miller <davem@davemloft.net>
Mon, 30 Jul 2018 16:27:21 +0000 (09:27 -0700)
There are no in-tree callers of cn23xx_dump_iq_regs.

Signed-off-by: YueHaibing <yuehaibing@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/cavium/liquidio/cn23xx_pf_device.c

index e088ded..9f4f3c1 100644 (file)
@@ -1417,50 +1417,6 @@ int validate_cn23xx_pf_config_info(struct octeon_device *oct,
        return 0;
 }
 
-void cn23xx_dump_iq_regs(struct octeon_device *oct)
-{
-       u32 regval, q_no;
-
-       dev_dbg(&oct->pci_dev->dev, "SLI_IQ_DOORBELL_0 [0x%x]: 0x%016llx\n",
-               CN23XX_SLI_IQ_DOORBELL(0),
-               CVM_CAST64(octeon_read_csr64
-                       (oct, CN23XX_SLI_IQ_DOORBELL(0))));
-
-       dev_dbg(&oct->pci_dev->dev, "SLI_IQ_BASEADDR_0 [0x%x]: 0x%016llx\n",
-               CN23XX_SLI_IQ_BASE_ADDR64(0),
-               CVM_CAST64(octeon_read_csr64
-                       (oct, CN23XX_SLI_IQ_BASE_ADDR64(0))));
-
-       dev_dbg(&oct->pci_dev->dev, "SLI_IQ_FIFO_RSIZE_0 [0x%x]: 0x%016llx\n",
-               CN23XX_SLI_IQ_SIZE(0),
-               CVM_CAST64(octeon_read_csr64(oct, CN23XX_SLI_IQ_SIZE(0))));
-
-       dev_dbg(&oct->pci_dev->dev, "SLI_CTL_STATUS [0x%x]: 0x%016llx\n",
-               CN23XX_SLI_CTL_STATUS,
-               CVM_CAST64(octeon_read_csr64(oct, CN23XX_SLI_CTL_STATUS)));
-
-       for (q_no = 0; q_no < CN23XX_MAX_INPUT_QUEUES; q_no++) {
-               dev_dbg(&oct->pci_dev->dev, "SLI_PKT[%d]_INPUT_CTL [0x%x]: 0x%016llx\n",
-                       q_no, CN23XX_SLI_IQ_PKT_CONTROL64(q_no),
-                       CVM_CAST64(octeon_read_csr64
-                               (oct, CN23XX_SLI_IQ_PKT_CONTROL64(q_no))));
-       }
-
-       pci_read_config_dword(oct->pci_dev, CN23XX_CONFIG_PCIE_DEVCTL, &regval);
-       dev_dbg(&oct->pci_dev->dev, "Config DevCtl [0x%x]: 0x%08x\n",
-               CN23XX_CONFIG_PCIE_DEVCTL, regval);
-
-       dev_dbg(&oct->pci_dev->dev, "SLI_PRT[%d]_CFG [0x%llx]: 0x%016llx\n",
-               oct->pcie_port, CN23XX_DPI_SLI_PRTX_CFG(oct->pcie_port),
-               CVM_CAST64(lio_pci_readq(
-                       oct, CN23XX_DPI_SLI_PRTX_CFG(oct->pcie_port))));
-
-       dev_dbg(&oct->pci_dev->dev, "SLI_S2M_PORT[%d]_CTL [0x%x]: 0x%016llx\n",
-               oct->pcie_port, CN23XX_SLI_S2M_PORTX_CTL(oct->pcie_port),
-               CVM_CAST64(octeon_read_csr64(
-                       oct, CN23XX_SLI_S2M_PORTX_CTL(oct->pcie_port))));
-}
-
 int cn23xx_fw_loaded(struct octeon_device *oct)
 {
        u64 val;