svn commit: r189684 - head/sys/kern

Warner Losh imp at FreeBSD.org
Wed Mar 11 01:19:32 PDT 2009


Author: imp
Date: Wed Mar 11 08:19:31 2009
New Revision: 189684
URL: http://svn.freebsd.org/changeset/base/189684

Log:
  Minor nits notice by jhb@

Modified:
  head/sys/kern/subr_bus.c

Modified: head/sys/kern/subr_bus.c
==============================================================================
--- head/sys/kern/subr_bus.c	Wed Mar 11 08:15:17 2009	(r189683)
+++ head/sys/kern/subr_bus.c	Wed Mar 11 08:19:31 2009	(r189684)
@@ -849,7 +849,6 @@ devclass_find(const char *classname)
 	return (devclass_find_internal(classname, NULL, FALSE));
 }
 
-	
 /**
  * @brief Register that a device driver has been added to a devclass
  *
@@ -868,8 +867,8 @@ devclass_find(const char *classname)
 static void
 devclass_driver_added(devclass_t dc, driver_t *driver)
 {
-	int i;
 	devclass_t parent;
+	int i;
 
 	/*
 	 * Call BUS_DRIVER_ADDED for any existing busses in this class.
@@ -883,7 +882,7 @@ devclass_driver_added(devclass_t dc, dri
 	 * single parent pointer around, we walk the entire list of
 	 * devclasses looking for children.  We set the
 	 * DC_HAS_CHILDREN flag when a child devclass is created on
-	 * the parent, so we only walk thoe list for those devclasses
+	 * the parent, so we only walk the list for those devclasses
 	 * that have children.
 	 */
 	if (!(dc->flags & DC_HAS_CHILDREN))


More information about the svn-src-all mailing list