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.
This commit is contained in:
Peter Wemm 1999-12-05 18:46:33 +00:00
parent c954d7368a
commit 2765c00ce8
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=54151

View File

@ -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;