We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6df72e commit bb4a1d6Copy full SHA for bb4a1d6
arch/x86/mm/k8topology_64.c
@@ -28,11 +28,15 @@ static __init int find_northbridge(void)
28
u32 header;
29
30
header = read_pci_config(0, num, 0, 0x00);
31
- if (header != (PCI_VENDOR_ID_AMD | (0x1100<<16)))
+ if (header != (PCI_VENDOR_ID_AMD | (0x1100<<16)) &&
32
+ header != (PCI_VENDOR_ID_AMD | (0x1200<<16)) &&
33
+ header != (PCI_VENDOR_ID_AMD | (0x1300<<16)))
34
continue;
35
36
header = read_pci_config(0, num, 1, 0x00);
- if (header != (PCI_VENDOR_ID_AMD | (0x1101<<16)))
37
+ if (header != (PCI_VENDOR_ID_AMD | (0x1101<<16)) &&
38
+ header != (PCI_VENDOR_ID_AMD | (0x1201<<16)) &&
39
+ header != (PCI_VENDOR_ID_AMD | (0x1301<<16)))
40
41
return num;
42
}
0 commit comments