summaryrefslogtreecommitdiffstats
path: root/sys/mips/adm5120/obio.c
diff options
context:
space:
mode:
authoravg <avg@FreeBSD.org>2010-09-10 11:19:03 +0000
committeravg <avg@FreeBSD.org>2010-09-10 11:19:03 +0000
commitc9fe8ad7f06a5eb11bd5ba5224721d64a9b81afd (patch)
treedf34a15378a2bfdd3403ef89e431e6f0c53c379c /sys/mips/adm5120/obio.c
parentcab433458afbc7e2f04ab7edaf6866c0d70724ea (diff)
downloadFreeBSD-src-c9fe8ad7f06a5eb11bd5ba5224721d64a9b81afd.zip
FreeBSD-src-c9fe8ad7f06a5eb11bd5ba5224721d64a9b81afd.tar.gz
bus_add_child: change type of order parameter to u_int
This reflects actual type used to store and compare child device orders. Change is mostly done via a Coccinelle (soon to be devel/coccinelle) semantic patch. Verified by LINT+modules kernel builds. Followup to: r212213 MFC after: 10 days
Diffstat (limited to 'sys/mips/adm5120/obio.c')
-rw-r--r--sys/mips/adm5120/obio.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/mips/adm5120/obio.c b/sys/mips/adm5120/obio.c
index ad6cb6e..b89c957 100644
--- a/sys/mips/adm5120/obio.c
+++ b/sys/mips/adm5120/obio.c
@@ -101,7 +101,7 @@ int irq_priorities[NIRQS] = {
static int obio_activate_resource(device_t, device_t, int, int,
struct resource *);
-static device_t obio_add_child(device_t, int, const char *, int);
+static device_t obio_add_child(device_t, u_int, const char *, int);
static struct resource *
obio_alloc_resource(device_t, device_t, int, int *, u_long,
u_long, u_long, u_int);
@@ -480,7 +480,7 @@ obio_hinted_child(device_t bus, const char *dname, int dunit)
}
static device_t
-obio_add_child(device_t bus, int order, const char *name, int unit)
+obio_add_child(device_t bus, u_int order, const char *name, int unit)
{
device_t child;
struct obio_ivar *ivar;
OpenPOWER on IntegriCloud