From owner-svn-src-all@FreeBSD.ORG Tue Mar 11 22:47:06 2014 Return-Path: Delivered-To: svn-src-all@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 176198F9; Tue, 11 Mar 2014 22:47:06 +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 DE2AAD33; Tue, 11 Mar 2014 22:47:05 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s2BMl5qq030826; Tue, 11 Mar 2014 22:47:05 GMT (envelope-from ian@svn.freebsd.org) Received: (from ian@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s2BMl5FM030820; Tue, 11 Mar 2014 22:47:05 GMT (envelope-from ian@svn.freebsd.org) Message-Id: <201403112247.s2BMl5FM030820@svn.freebsd.org> From: Ian Lepore Date: Tue, 11 Mar 2014 22:47:05 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r263057 - in head/sys/arm: arm include X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Mar 2014 22:47:06 -0000 Author: ian Date: Tue Mar 11 22:47:04 2014 New Revision: 263057 URL: http://svnweb.freebsd.org/changeset/base/263057 Log: Remove #include from files that don't need it. Modified: head/sys/arm/arm/copystr.S head/sys/arm/arm/fusu.S head/sys/arm/arm/support.S head/sys/arm/include/sysarch.h Modified: head/sys/arm/arm/copystr.S ============================================================================== --- head/sys/arm/arm/copystr.S Tue Mar 11 22:41:34 2014 (r263056) +++ head/sys/arm/arm/copystr.S Tue Mar 11 22:47:04 2014 (r263057) @@ -42,7 +42,6 @@ #include "assym.s" #include #include -#include __FBSDID("$FreeBSD$"); #include Modified: head/sys/arm/arm/fusu.S ============================================================================== --- head/sys/arm/arm/fusu.S Tue Mar 11 22:41:34 2014 (r263056) +++ head/sys/arm/arm/fusu.S Tue Mar 11 22:47:04 2014 (r263057) @@ -34,7 +34,6 @@ */ #include -#include #include #include "assym.s" __FBSDID("$FreeBSD$"); Modified: head/sys/arm/arm/support.S ============================================================================== --- head/sys/arm/arm/support.S Tue Mar 11 22:41:34 2014 (r263056) +++ head/sys/arm/arm/support.S Tue Mar 11 22:47:04 2014 (r263057) @@ -87,7 +87,6 @@ */ #include -#include __FBSDID("$FreeBSD$"); #include "assym.s" Modified: head/sys/arm/include/sysarch.h ============================================================================== --- head/sys/arm/include/sysarch.h Tue Mar 11 22:41:34 2014 (r263056) +++ head/sys/arm/include/sysarch.h Tue Mar 11 22:47:04 2014 (r263057) @@ -45,7 +45,7 @@ * The cpu_switch() code assumes ARM_RAS_START is ARM_TP_ADDRESS + 4, and * ARM_RAS_END is ARM_TP_ADDRESS + 8, so if that ever changes, be sure to * update the cpu_switch() (and cpu_throw()) code as well. - * In addition, code in arm/include/atomic.h and arm/include/asmacros.h + * In addition, code in arm/include/atomic.h and arm/arm/exception.S * assumes that ARM_RAS_END is at ARM_RAS_START+4, so be sure to update those * if ARM_RAS_END moves in relation to ARM_RAS_START (look for occurrences * of ldr/str rm,[rn, #4]).