Re: [PATCH 2/4] ARM/PCI: mv78xx0: pass pci_ops correctly again

2017-07-02 Thread Bjorn Helgaas
On Sat, Jul 01, 2017 at 02:54:57PM +0100, Lorenzo Pieralisi wrote: > Hi Bjorn, > > On Tue, Jun 27, 2017 at 06:11:43PM -0500, Bjorn Helgaas wrote: > > On Thu, Jun 22, 2017 at 10:38:55AM +0100, Lorenzo Pieralisi wrote: > > > On Wed, Jun 21, 2017 at 11:53:00PM +0200, Arnd Bergmann wrote: > > > > We

Re: [PATCH 2/4] ARM/PCI: mv78xx0: pass pci_ops correctly again

2017-07-02 Thread Bjorn Helgaas
On Sat, Jul 01, 2017 at 02:54:57PM +0100, Lorenzo Pieralisi wrote: > Hi Bjorn, > > On Tue, Jun 27, 2017 at 06:11:43PM -0500, Bjorn Helgaas wrote: > > On Thu, Jun 22, 2017 at 10:38:55AM +0100, Lorenzo Pieralisi wrote: > > > On Wed, Jun 21, 2017 at 11:53:00PM +0200, Arnd Bergmann wrote: > > > > We

Re: [PATCH 2/4] ARM/PCI: mv78xx0: pass pci_ops correctly again

2017-07-01 Thread Lorenzo Pieralisi
Hi Bjorn, On Tue, Jun 27, 2017 at 06:11:43PM -0500, Bjorn Helgaas wrote: > On Thu, Jun 22, 2017 at 10:38:55AM +0100, Lorenzo Pieralisi wrote: > > On Wed, Jun 21, 2017 at 11:53:00PM +0200, Arnd Bergmann wrote: > > > We used to pass the operations when calling pci_scan_root_bus, but > > > that

Re: [PATCH 2/4] ARM/PCI: mv78xx0: pass pci_ops correctly again

2017-07-01 Thread Lorenzo Pieralisi
Hi Bjorn, On Tue, Jun 27, 2017 at 06:11:43PM -0500, Bjorn Helgaas wrote: > On Thu, Jun 22, 2017 at 10:38:55AM +0100, Lorenzo Pieralisi wrote: > > On Wed, Jun 21, 2017 at 11:53:00PM +0200, Arnd Bergmann wrote: > > > We used to pass the operations when calling pci_scan_root_bus, but > > > that

Re: [PATCH 2/4] ARM/PCI: mv78xx0: pass pci_ops correctly again

2017-06-27 Thread Bjorn Helgaas
On Thu, Jun 22, 2017 at 10:38:55AM +0100, Lorenzo Pieralisi wrote: > On Wed, Jun 21, 2017 at 11:53:00PM +0200, Arnd Bergmann wrote: > > We used to pass the operations when calling pci_scan_root_bus, but > > that argument was removed: > > > > arch/arm/mach-mv78xx0/pcie.c:175:23: error: 'pcie_ops'

Re: [PATCH 2/4] ARM/PCI: mv78xx0: pass pci_ops correctly again

2017-06-27 Thread Bjorn Helgaas
On Thu, Jun 22, 2017 at 10:38:55AM +0100, Lorenzo Pieralisi wrote: > On Wed, Jun 21, 2017 at 11:53:00PM +0200, Arnd Bergmann wrote: > > We used to pass the operations when calling pci_scan_root_bus, but > > that argument was removed: > > > > arch/arm/mach-mv78xx0/pcie.c:175:23: error: 'pcie_ops'

Re: [PATCH 2/4] ARM/PCI: mv78xx0: pass pci_ops correctly again

2017-06-22 Thread Lorenzo Pieralisi
On Wed, Jun 21, 2017 at 11:53:00PM +0200, Arnd Bergmann wrote: > We used to pass the operations when calling pci_scan_root_bus, but > that argument was removed: > > arch/arm/mach-mv78xx0/pcie.c:175:23: error: 'pcie_ops' defined but not used > [-Werror=unused-variable] > > Setting it in pci_hw

Re: [PATCH 2/4] ARM/PCI: mv78xx0: pass pci_ops correctly again

2017-06-22 Thread Lorenzo Pieralisi
On Wed, Jun 21, 2017 at 11:53:00PM +0200, Arnd Bergmann wrote: > We used to pass the operations when calling pci_scan_root_bus, but > that argument was removed: > > arch/arm/mach-mv78xx0/pcie.c:175:23: error: 'pcie_ops' defined but not used > [-Werror=unused-variable] > > Setting it in pci_hw

[PATCH 2/4] ARM/PCI: mv78xx0: pass pci_ops correctly again

2017-06-21 Thread Arnd Bergmann
We used to pass the operations when calling pci_scan_root_bus, but that argument was removed: arch/arm/mach-mv78xx0/pcie.c:175:23: error: 'pcie_ops' defined but not used [-Werror=unused-variable] Setting it in pci_hw should address this. Fixes: ace27646da8e ("ARM/PCI: Convert PCI scan API to

[PATCH 2/4] ARM/PCI: mv78xx0: pass pci_ops correctly again

2017-06-21 Thread Arnd Bergmann
We used to pass the operations when calling pci_scan_root_bus, but that argument was removed: arch/arm/mach-mv78xx0/pcie.c:175:23: error: 'pcie_ops' defined but not used [-Werror=unused-variable] Setting it in pci_hw should address this. Fixes: ace27646da8e ("ARM/PCI: Convert PCI scan API to