mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-19 03:31:25 +00:00
PCI: Use class quirk for intel fix_transparent_bridge
Signed-off-by: Yinghai Lu <yinghai@kernel.org> Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
This commit is contained in:
parent
c484b2418b
commit
4082cf2d7b
@ -164,11 +164,11 @@ DECLARE_PCI_FIXUP_RESUME(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8367_0, pci_fixup_
|
|||||||
*/
|
*/
|
||||||
static void __devinit pci_fixup_transparent_bridge(struct pci_dev *dev)
|
static void __devinit pci_fixup_transparent_bridge(struct pci_dev *dev)
|
||||||
{
|
{
|
||||||
if ((dev->class >> 8) == PCI_CLASS_BRIDGE_PCI &&
|
if ((dev->device & 0xff00) == 0x2400)
|
||||||
(dev->device & 0xff00) == 0x2400)
|
|
||||||
dev->transparent = 1;
|
dev->transparent = 1;
|
||||||
}
|
}
|
||||||
DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, PCI_ANY_ID, pci_fixup_transparent_bridge);
|
DECLARE_PCI_FIXUP_CLASS_HEADER(PCI_VENDOR_ID_INTEL, PCI_ANY_ID,
|
||||||
|
PCI_CLASS_BRIDGE_PCI, 8, pci_fixup_transparent_bridge);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Fixup for C1 Halt Disconnect problem on nForce2 systems.
|
* Fixup for C1 Halt Disconnect problem on nForce2 systems.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user