mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-04 01:24:12 +08:00
PCI: v3: Use pci_host_probe() to register host
The v3 host driver does the same host registration and bus scanning calls as pci_host_probe, so let's use it instead. Link: https://lore.kernel.org/r/20200522234832.954484-8-robh@kernel.org Signed-off-by: Rob Herring <robh@kernel.org> Signed-off-by: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com> Reviewed-by: Linus Walleij <linus.walleij@linaro.org> Cc: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
parent
67047e8bc8
commit
d7169a94f1
@ -239,7 +239,6 @@ struct v3_pci {
|
||||
struct device *dev;
|
||||
void __iomem *base;
|
||||
void __iomem *config_base;
|
||||
struct pci_bus *bus;
|
||||
u32 config_mem;
|
||||
u32 non_pre_mem;
|
||||
u32 pre_mem;
|
||||
@ -904,17 +903,7 @@ static int v3_pci_probe(struct platform_device *pdev)
|
||||
val |= V3_SYSTEM_M_LOCK;
|
||||
writew(val, v3->base + V3_SYSTEM);
|
||||
|
||||
ret = pci_scan_root_bus_bridge(host);
|
||||
if (ret) {
|
||||
dev_err(dev, "failed to register host: %d\n", ret);
|
||||
return ret;
|
||||
}
|
||||
v3->bus = host->bus;
|
||||
|
||||
pci_bus_assign_resources(v3->bus);
|
||||
pci_bus_add_devices(v3->bus);
|
||||
|
||||
return 0;
|
||||
return pci_host_probe(host);
|
||||
}
|
||||
|
||||
static const struct of_device_id v3_pci_of_match[] = {
|
||||
|
Loading…
Reference in New Issue
Block a user