summaryrefslogtreecommitdiffstats
path: root/sys/x86/isa/clock.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/x86/isa/clock.c')
-rw-r--r--sys/x86/isa/clock.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/x86/isa/clock.c b/sys/x86/isa/clock.c
index a3211f8..bf50812 100644
--- a/sys/x86/isa/clock.c
+++ b/sys/x86/isa/clock.c
@@ -511,7 +511,12 @@ attimer_probe(device_t dev)
int result;
result = ISA_PNP_PROBE(device_get_parent(dev), dev, attimer_ids);
- return(result);
+ /* ENOENT means no PnP-ID, device is hinted. */
+ if (result == ENOENT) {
+ device_set_desc(dev, "AT timer");
+ return (BUS_PROBE_LOW_PRIORITY);
+ }
+ return (result);
}
static int
OpenPOWER on IntegriCloud