diff options
author | kato <kato@FreeBSD.org> | 2000-06-28 03:19:44 +0000 |
---|---|---|
committer | kato <kato@FreeBSD.org> | 2000-06-28 03:19:44 +0000 |
commit | 54a8c464976389474b558d703645d673a3034d32 (patch) | |
tree | 0b663c654403cea2166caa84db93ca60c789a0f8 /sys | |
parent | ca048afcef64a9f537f75d68d665c91bb06d517f (diff) | |
download | FreeBSD-src-54a8c464976389474b558d703645d673a3034d32.zip FreeBSD-src-54a8c464976389474b558d703645d673a3034d32.tar.gz |
Merged from sys/i386/isa/npx.c revision 1.83.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/pc98/pc98/npx.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/pc98/pc98/npx.c b/sys/pc98/pc98/npx.c index af5dd97..8b9ddf4 100644 --- a/sys/pc98/pc98/npx.c +++ b/sys/pc98/pc98/npx.c @@ -1016,7 +1016,11 @@ static struct isa_pnp_id npxisa_ids[] = { static int npxisa_probe(device_t dev) { - return (ISA_PNP_PROBE(device_get_parent(dev), dev, npxisa_ids)); + int result; + if ((result = ISA_PNP_PROBE(device_get_parent(dev), dev, npxisa_ids)) <= 0) { + device_quiet(dev); + } + return(result); } static int |