mirror of https://gitee.com/openkylin/linux.git
powerpc/pci: Add missing call to header fixup
Add missing call to pci_fixup_device(pci_fixup_early, ...) when building the pci_dev from scratch off the Open Firmware device-tree Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
This commit is contained in:
parent
26b4a0ca46
commit
94afc008e1
|
@ -166,6 +166,9 @@ struct pci_dev *of_create_pci_dev(struct device_node *node,
|
||||||
dev->error_state = pci_channel_io_normal;
|
dev->error_state = pci_channel_io_normal;
|
||||||
dev->dma_mask = 0xffffffff;
|
dev->dma_mask = 0xffffffff;
|
||||||
|
|
||||||
|
/* Early fixups, before probing the BARs */
|
||||||
|
pci_fixup_device(pci_fixup_early, dev);
|
||||||
|
|
||||||
if (!strcmp(type, "pci") || !strcmp(type, "pciex")) {
|
if (!strcmp(type, "pci") || !strcmp(type, "pciex")) {
|
||||||
/* a PCI-PCI bridge */
|
/* a PCI-PCI bridge */
|
||||||
dev->hdr_type = PCI_HEADER_TYPE_BRIDGE;
|
dev->hdr_type = PCI_HEADER_TYPE_BRIDGE;
|
||||||
|
|
Loading…
Reference in New Issue