From 2765c00ce8acd35a0a6a702474063c2b9efae992 Mon Sep 17 00:00:00 2001 From: Peter Wemm Date: Sun, 5 Dec 1999 18:46:33 +0000 Subject: [PATCH] Lower (a lot!) the chip* probe so it doesn't steal the pci ID from ide_pci which still uses the pci driver compat shims. --- sys/pci/pcisupport.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/pci/pcisupport.c b/sys/pci/pcisupport.c index 519c63b8a5ed..0ce5f69a386f 100644 --- a/sys/pci/pcisupport.c +++ b/sys/pci/pcisupport.c @@ -1196,7 +1196,7 @@ static int chip_probe(device_t dev) } device_set_desc_copy(dev, desc); - return -100; /* Low match priority */ + return -10000; /* Low match priority */ } return ENXIO; @@ -1566,7 +1566,7 @@ static int vga_probe(device_t dev) desc = vga_match(dev); if (desc) { device_set_desc(dev, desc); - return -100; /* Low match priority */ + return -10000; /* Low match priority */ } return ENXIO;