]> git.sur5r.net Git - u-boot/commitdiff
pci: xilinx: Remove unused field 'hose' from struct xilinx_pcie
authorTuomas Tynkkynen <tuomas.tynkkynen@iki.fi>
Fri, 1 Sep 2017 14:25:59 +0000 (17:25 +0300)
committerTom Rini <trini@konsulko.com>
Fri, 22 Sep 2017 11:39:55 +0000 (07:39 -0400)
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>
drivers/pci/pcie_xilinx.c

index e31ba8bd51e13cacff7a84adadc6f727738e34dc..4ba32df516996b1725eddfdb2e23f218c3538202 100644 (file)
 
 /**
  * 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;
 };