From owner-svn-src-head@FreeBSD.ORG Wed Jan 21 08:55:02 2015 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E30B5570; Wed, 21 Jan 2015 08:55:02 +0000 (UTC) Received: from nibbler.fubar.geek.nz (nibbler.fubar.geek.nz [199.48.134.198]) by mx1.freebsd.org (Postfix) with ESMTP id C4613D59; Wed, 21 Jan 2015 08:55:02 +0000 (UTC) Received: from bender.lan (97e078e7.skybroadband.com [151.224.120.231]) by nibbler.fubar.geek.nz (Postfix) with ESMTPSA id E923873000; Wed, 21 Jan 2015 08:54:59 +0000 (UTC) Date: Wed, 21 Jan 2015 08:54:53 +0000 From: Andrew Turner To: Ian Lepore Subject: Re: svn commit: r277467 - in head/sys/arm: arm at91 cavium/cns11xx mv samsung/s3c2xx0 versatile xscale/i80321 xscale/i8134x xscale/ixp425 xscale/pxa Message-ID: <20150121085453.794657f9@bender.lan> In-Reply-To: <201501210256.t0L2uEOU002068@svn.freebsd.org> References: <201501210256.t0L2uEOU002068@svn.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.18-1 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: Wed, 21 Jan 2015 08:55:03 -0000 On Wed, 21 Jan 2015 02:56:14 +0000 (UTC) Ian Lepore wrote: > Author: ian > Date: Wed Jan 21 02:56:13 2015 > New Revision: 277467 > URL: https://svnweb.freebsd.org/changeset/base/277467 > > Log: > For some reason, all the arm bus_space functions that work with > uint16 values have armv4 in the name. There's nothing armv4-special > about them, so just use the same sort of names as all the other > functions. This is because ARMv3 lacked half word load and store instructions. We got this code from NetBSD who appears to have support for these older ARM processors. Andrew