From owner-svn-src-head@FreeBSD.ORG Sun Nov 24 22:01:16 2013 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 90D03D90; Sun, 24 Nov 2013 22:01:16 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 671FC2844; Sun, 24 Nov 2013 22:01:16 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rAOM1GEN035040; Sun, 24 Nov 2013 22:01:16 GMT (envelope-from gavin@svn.freebsd.org) Received: (from gavin@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id rAOM1G6U035037; Sun, 24 Nov 2013 22:01:16 GMT (envelope-from gavin@svn.freebsd.org) Message-Id: <201311242201.rAOM1G6U035037@svn.freebsd.org> From: Gavin Atkinson Date: Sun, 24 Nov 2013 22:01:16 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r258531 - in head/sys/arm: include mv X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.16 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Nov 2013 22:01:16 -0000 Author: gavin Date: Sun Nov 24 22:01:15 2013 New Revision: 258531 URL: http://svnweb.freebsd.org/changeset/base/258531 Log: platform_devmap_init() was renamed initarm_devmap_init() in r257669, update comments to match. Modified: head/sys/arm/include/machdep.h head/sys/arm/mv/mv_machdep.c Modified: head/sys/arm/include/machdep.h ============================================================================== --- head/sys/arm/include/machdep.h Sun Nov 24 20:54:52 2013 (r258530) +++ head/sys/arm/include/machdep.h Sun Nov 24 22:01:15 2013 (r258531) @@ -41,10 +41,10 @@ vm_offset_t parse_boot_param(struct arm_ * - initarm_early_init() is called very early, after parsing the boot params * and after physical memory has been located and sized. * - * - platform_devmap_init() is called as one of the last steps of early virtual + * - initarm_devmap_init() is called as one of the last steps of early virtual * memory initialization, shortly before the new page tables are installed. * - * - initarm_lastaddr() is called after platform_devmap_init(), and must return + * - initarm_lastaddr() is called after initarm_devmap_init(), and must return * the address of the first byte of unusable KVA space. This allows a * platform to carve out of the top of the KVA space whatever reserves it * needs for things like static device mapping, and this is called to get the Modified: head/sys/arm/mv/mv_machdep.c ============================================================================== --- head/sys/arm/mv/mv_machdep.c Sun Nov 24 20:54:52 2013 (r258530) +++ head/sys/arm/mv/mv_machdep.c Sun Nov 24 22:01:15 2013 (r258531) @@ -296,7 +296,7 @@ out: * Supply a default do-nothing implementation of fdt_pci_devmap() via a weak * alias. Many Marvell platforms don't support a PCI interface, but to support * those that do, we end up with a reference to this function below, in - * platform_devmap_init(). If "device pci" appears in the kernel config, the + * initarm_devmap_init(). If "device pci" appears in the kernel config, the * real implementation of this function in dev/fdt/fdt_pci.c overrides the weak * alias defined here. */