svn commit: r209129 - head/sys/arm/arm
Rafal Jaworowski
raj at FreeBSD.org
Sun Jun 13 13:08:25 UTC 2010
Author: raj
Date: Sun Jun 13 13:08:23 2010
New Revision: 209129
URL: http://svn.freebsd.org/changeset/base/209129
Log:
Improve style.
Modified:
head/sys/arm/arm/nexus.c
Modified: head/sys/arm/arm/nexus.c
==============================================================================
--- head/sys/arm/arm/nexus.c Sun Jun 13 13:02:43 2010 (r209128)
+++ head/sys/arm/arm/nexus.c Sun Jun 13 13:08:23 2010 (r209129)
@@ -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
More information about the svn-src-all
mailing list