From owner-svn-src-stable@FreeBSD.ORG Sat Nov 6 01:09:01 2010 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0FF88106564A; Sat, 6 Nov 2010 01:09:01 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id F1F778FC08; Sat, 6 Nov 2010 01:09:00 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id oA6190Q9014690; Sat, 6 Nov 2010 01:09:00 GMT (envelope-from marius@svn.freebsd.org) Received: (from marius@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id oA61902B014688; Sat, 6 Nov 2010 01:09:00 GMT (envelope-from marius@svn.freebsd.org) Message-Id: <201011060109.oA61902B014688@svn.freebsd.org> From: Marius Strobl Date: Sat, 6 Nov 2010 01:09:00 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org X-SVN-Group: stable-8 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r214856 - stable/8/sys/arm/mv X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 06 Nov 2010 01:09:01 -0000 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;