Skip to content

Commit 64d293d

Browse files
committed
Merge branch 'remotes/lorenzo/pci/loongson'
- Fix loongson class code quirk so it happens early enough (Tiezhu Yang) * remotes/lorenzo/pci/loongson: PCI: loongson: Use DECLARE_PCI_FIXUP_EARLY for bridge_class_quirk()
2 parents 98f5c57 + 14110af commit 64d293d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

drivers/pci/controller/pci-loongson.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,11 @@ static void bridge_class_quirk(struct pci_dev *dev)
3737
{
3838
dev->class = PCI_CLASS_BRIDGE_PCI << 8;
3939
}
40-
DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_LOONGSON,
40+
DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_LOONGSON,
4141
DEV_PCIE_PORT_0, bridge_class_quirk);
42-
DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_LOONGSON,
42+
DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_LOONGSON,
4343
DEV_PCIE_PORT_1, bridge_class_quirk);
44-
DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_LOONGSON,
44+
DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_LOONGSON,
4545
DEV_PCIE_PORT_2, bridge_class_quirk);
4646

4747
static void system_bus_quirk(struct pci_dev *pdev)

0 commit comments

Comments
 (0)