From owner-svn-src-all@FreeBSD.ORG Mon Mar 3 20:28:27 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 CD937820; Mon, 3 Mar 2014 20:28:27 +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 BA02D9AD; Mon, 3 Mar 2014 20:28:27 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s23KSREj003417; Mon, 3 Mar 2014 20:28:27 GMT (envelope-from brooks@svn.freebsd.org) Received: (from brooks@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s23KSRwG003416; Mon, 3 Mar 2014 20:28:27 GMT (envelope-from brooks@svn.freebsd.org) Message-Id: <201403032028.s23KSRwG003416@svn.freebsd.org> From: Brooks Davis Date: Mon, 3 Mar 2014 20:28:27 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org Subject: svn commit: r262717 - stable/10/sys/mips/mips X-SVN-Group: stable-10 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: Mon, 03 Mar 2014 20:28:27 -0000 Author: brooks Date: Mon Mar 3 20:28:27 2014 New Revision: 262717 URL: http://svnweb.freebsd.org/changeset/base/262717 Log: MFR r261294: Remove an unneeded space in the BERI merge. Sponsored by: DARPA, AFRL Modified: stable/10/sys/mips/mips/machdep.c Directory Properties: stable/10/ (props changed) Modified: stable/10/sys/mips/mips/machdep.c ============================================================================== --- stable/10/sys/mips/mips/machdep.c Mon Mar 3 18:06:25 2014 (r262716) +++ stable/10/sys/mips/mips/machdep.c Mon Mar 3 20:28:27 2014 (r262717) @@ -351,7 +351,7 @@ mips_vector_init(void) * XXXRW: Why don't we install the XTLB handler for all 64-bit * architectures? */ -#if defined(__mips_n64) || defined(CPU_RMI) || defined(CPU_NLM) || defined (CPU_BERI) +#if defined(__mips_n64) || defined(CPU_RMI) || defined(CPU_NLM) || defined(CPU_BERI) /* Fake, but sufficient, for the 32-bit with 64-bit hardware addresses */ bcopy(MipsTLBMiss, (void *)MIPS_XTLB_MISS_EXC_VEC, MipsTLBMissEnd - MipsTLBMiss);