lkml.org 
[lkml]   [2014]   [Aug]   [20]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
From
SubjectRe: [PATCH] drivers: pci: convert generic host controller to DT host bridge creation API
Date
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


\
 
 \ /
  Last update: 2014-08-20 13:41    [W:0.134 / U:0.400 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site