summaryrefslogtreecommitdiff
path: root/drivers/pci
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas.tynkkynen@iki.fi>2017-09-01 17:25:59 +0300
committerTom Rini <trini@konsulko.com>2017-09-22 07:39:55 -0400
commitbee278de81a66958ee777010bfc646c148657f41 (patch)
tree6644ddaa399dc485c4e40c6effa77090267c4405 /drivers/pci
parentadfc3e4804e89fa1959e447e55bf8707466b8346 (diff)
pci: xilinx: Remove unused field 'hose' from struct xilinx_pcie
This field has never been used as the driver has been DM-based since the beginning. Drop it. Signed-off-by: Tuomas Tynkkynen <tuomas.tynkkynen@iki.fi> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'drivers/pci')
-rw-r--r--drivers/pci/pcie_xilinx.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/pci/pcie_xilinx.c b/drivers/pci/pcie_xilinx.c
index e31ba8bd51..4ba32df516 100644
--- a/drivers/pci/pcie_xilinx.c
+++ b/drivers/pci/pcie_xilinx.c
@@ -14,11 +14,9 @@
/**
* struct xilinx_pcie - Xilinx PCIe controller state
- * @hose: The parent classes PCI controller state
* @cfg_base: The base address of memory mapped configuration space
*/
struct xilinx_pcie {
- struct pci_controller hose;
void *cfg_base;
};