Re: [PATCH] drivers: pci: convert generic host controller to DT host bridge creation API

From: Arnd Bergmann
Date: Wed Aug 20 2014 - 07:28:39 EST


On Tuesday 12 August 2014, Liviu Dudau wrote:
> + return of_create_pci_host_bridge(dev, 0, 0xff, &gen_pci_ops,
> + gen_pci_setup, pci);

I had not noticed it earlier, but the setup callback is actually a feature
of the arm32 PCI code that I had hoped to avoid when moving to the
generic API. Can we do this as a more regular sequence of


ret = of_create_pci_host_bridge(dev, 0, 0xff, &gen_pci_ops, pci);
if (ret)
return ret;

ret = gen_pci_setup(pci);
if (ret)
pci_destroy_host_bridge(dev, pci);
return ret;

?

Arnd
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/