diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2012-07-26 01:12:11 +0100 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2012-07-26 01:13:29 +0100 |
commit | c262d02fb5defe9100df54cf83cc00e11e335745 (patch) | |
tree | 78d7b50555594684148ffe5171139b6bf0658ed6 /src/intel_module.c | |
parent | ad6355311b8b80777bc0fec95f6bf6cd1b4969d9 (diff) |
Limit PCI matching to VGA devices
Fixes X -configure
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'src/intel_module.c')
-rw-r--r-- | src/intel_module.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intel_module.c b/src/intel_module.c index 5e7a330c..e1755ff0 100644 --- a/src/intel_module.c +++ b/src/intel_module.c @@ -154,7 +154,7 @@ static const SymTabRec _intel_chipsets[] = { SymTabRec *intel_chipsets = (SymTabRec *) _intel_chipsets; #define INTEL_DEVICE_MATCH(d,i) \ - { 0x8086, (d), PCI_MATCH_ANY, PCI_MATCH_ANY, 0, 0, (intptr_t)(i) } + { 0x8086, (d), PCI_MATCH_ANY, PCI_MATCH_ANY, 0x3 << 16, 0xff << 16, (intptr_t)(i) } static const struct pci_id_match intel_device_match[] = { #if !KMS_ONLY |