diff options
author | tanimura <tanimura@FreeBSD.org> | 2005-05-29 23:22:23 +0000 |
---|---|---|
committer | tanimura <tanimura@FreeBSD.org> | 2005-05-29 23:22:23 +0000 |
commit | bdc0663fe016210c08ae3412968ec0f0ce9321b3 (patch) | |
tree | 397d50a13d9ad82a6cb398b58e9e1a9bd93b36fc /sys/dev/sound | |
parent | 31cf0b139909044c5124c2b3833c74d6649cb859 (diff) | |
download | FreeBSD-src-bdc0663fe016210c08ae3412968ec0f0ce9321b3.zip FreeBSD-src-bdc0663fe016210c08ae3412968ec0f0ce9321b3.tar.gz |
s/-1000/BUS_PROBE_LOW_PRIORITY/
Pointed out by: nyan
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 b2878a1..506cd1d 100644 --- a/sys/dev/sound/pci/ich.c +++ b/sys/dev/sound/pci/ich.c @@ -642,7 +642,7 @@ ich_pci_probe(device_t dev) case I6300ESBID: device_set_desc(dev, "Intel 6300ESB"); - return -1000; /* allow a better driver to override us */ + return BUS_PROBE_LOW_PRIORITY; case ICH6ID: device_set_desc(dev, "Intel ICH6 (82801FB)"); |