summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
Diffstat (limited to 'sys')
-rw-r--r--sys/arm/arm/nexus.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arm/arm/nexus.c b/sys/arm/arm/nexus.c
index b78a7f2..5a29a6a 100644
--- a/sys/arm/arm/nexus.c
+++ b/sys/arm/arm/nexus.c
@@ -107,6 +107,7 @@ static devclass_t nexus_devclass;
static int
nexus_probe(device_t dev)
{
+
device_quiet(dev); /* suppress attach message for neatness */
mem_rman.rm_start = 0;
@@ -116,7 +117,7 @@ nexus_probe(device_t dev)
if (rman_init(&mem_rman) || rman_manage_region(&mem_rman, 0, ~0u))
panic("nexus_probe mem_rman");
- return (0);
+ return (BUS_PROBE_DEFAULT);
}
static int
OpenPOWER on IntegriCloud