diff options
author | Tuomas Tynkkynen <tuomas.tynkkynen@iki.fi> | 2017-09-01 17:25:59 +0300 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-09-22 07:39:55 -0400 |
commit | bee278de81a66958ee777010bfc646c148657f41 (patch) | |
tree | 6644ddaa399dc485c4e40c6effa77090267c4405 | |
parent | adfc3e4804e89fa1959e447e55bf8707466b8346 (diff) | |
download | u-boot-bee278de81a66958ee777010bfc646c148657f41.tar.gz |
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>
-rw-r--r-- | drivers/pci/pcie_xilinx.c | 2 |
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; }; |