quieten the esscontrol device

This commit is contained in:
Cameron Grant 2001-02-02 16:41:06 +00:00
parent e31b3502a1
commit d60a6a8e0c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=71932

View File

@ -905,7 +905,12 @@ static struct isa_pnp_id essc_ids[] = {
static int
esscontrol_probe(device_t dev)
{
return ISA_PNP_PROBE(device_get_parent(dev), dev, essc_ids);
int i;
i = ISA_PNP_PROBE(device_get_parent(dev), dev, essc_ids);
if (i == 0)
device_quiet(dev);
return i;
}
static int