diff options
author | imp <imp@FreeBSD.org> | 2005-03-01 07:50:12 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2005-03-01 07:50:12 +0000 |
commit | ca5e477ca2bce8c6983ba3d48bdec85ca0c8fd37 (patch) | |
tree | 60438a3fca2e5272601be58cd8fca3817dc8ed2d /sys/dev/tga/tga_pci.c | |
parent | bdb2a763651df2b1f12aa351f33d6d94f620e896 (diff) | |
download | FreeBSD-src-ca5e477ca2bce8c6983ba3d48bdec85ca0c8fd37.zip FreeBSD-src-ca5e477ca2bce8c6983ba3d48bdec85ca0c8fd37.tar.gz |
Use BUS_PROBE_DEFAULT in preference to 0. Also for vx, return
BUS_PROBE_LOW_PRIORITY in stead of ifdef for devices that xl and vx
both support so that xl will snarf them on up.
Diffstat (limited to 'sys/dev/tga/tga_pci.c')
-rw-r--r-- | sys/dev/tga/tga_pci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/tga/tga_pci.c b/sys/dev/tga/tga_pci.c index ffa5deb..25afbfd 100644 --- a/sys/dev/tga/tga_pci.c +++ b/sys/dev/tga/tga_pci.c @@ -121,7 +121,7 @@ tga_probe(device_t dev) if((pci_get_vendor(dev) == t->vendor_id) && (pci_get_device(dev) == t->device_id)) { device_set_desc(dev, t->name); - error = 0; + error = BUS_PROBE_DEFAULT; break; } t++; |