diff options
author | murray <murray@FreeBSD.org> | 2005-03-20 20:13:21 +0000 |
---|---|---|
committer | murray <murray@FreeBSD.org> | 2005-03-20 20:13:21 +0000 |
commit | 0aff3baf021449e7c5a2db2e8729db600813a115 (patch) | |
tree | 492c702919c9db04ed3226af2a58d7343bdcd570 /sys/dev/sound | |
parent | ee2d4fb50ed8382337e4fee944f7924ecb252669 (diff) | |
download | FreeBSD-src-0aff3baf021449e7c5a2db2e8729db600813a115.zip FreeBSD-src-0aff3baf021449e7c5a2db2e8729db600813a115.tar.gz |
Return BUS_PROBE_DEFAULT in preference to 0.
Pointed out by: Nate Lawson <nate@root.org>
Diffstat (limited to 'sys/dev/sound')
-rw-r--r-- | sys/dev/sound/pci/ich.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/sound/pci/ich.c b/sys/dev/sound/pci/ich.c index 2f44e8a..82b33f2 100644 --- a/sys/dev/sound/pci/ich.c +++ b/sys/dev/sound/pci/ich.c @@ -668,7 +668,7 @@ ich_pci_probe(device_t dev) case 0x005910de: device_set_desc(dev, "nVidia nForce4"); - return 0; + return BUS_PROBE_DEFAULT; case 0x74451022: device_set_desc(dev, "AMD-768"); |