From: Tuomas Tynkkynen Date: Fri, 1 Sep 2017 14:25:59 +0000 (+0300) Subject: pci: xilinx: Remove unused field 'hose' from struct xilinx_pcie X-Git-Tag: v2017.11-rc1~74 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bee278de81a66958ee777010bfc646c148657f41;p=platform%2Fkernel%2Fu-boot.git 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 Reviewed-by: Bin Meng --- diff --git a/drivers/pci/pcie_xilinx.c b/drivers/pci/pcie_xilinx.c index e31ba8b..4ba32df 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; };