svn commit: r214856 - stable/8/sys/arm/mv

Marius Strobl marius at FreeBSD.org
Sat Nov 6 01:09:01 UTC 2010


Author: marius
Date: Sat Nov  6 01:09:00 2010
New Revision: 214856
URL: http://svn.freebsd.org/changeset/base/214856

Log:
  Fix an instance missed in r212892:
  
  MFC r212413: bus_add_child: change type of order parameter to u_int

Modified:
  stable/8/sys/arm/mv/obio.c

Modified: stable/8/sys/arm/mv/obio.c
==============================================================================
--- stable/8/sys/arm/mv/obio.c	Sat Nov  6 00:53:54 2010	(r214855)
+++ stable/8/sys/arm/mv/obio.c	Sat Nov  6 01:09:00 2010	(r214856)
@@ -324,7 +324,7 @@ mbus_activate_resource(device_t dev, dev
 }
 
 static device_t
-mbus_add_child(device_t bus, int order, const char *name, int unit)
+mbus_add_child(device_t bus, u_int order, const char *name, int unit)
 {
 	struct obio_device *od;
 	device_t child;


More information about the svn-src-all mailing list