From owner-svn-src-all@FreeBSD.ORG Mon Feb 23 19:31:48 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DC8FB1065689; Mon, 23 Feb 2009 19:31:48 +0000 (UTC) (envelope-from nwhitehorn@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id CB0FA8FC08; Mon, 23 Feb 2009 19:31:48 +0000 (UTC) (envelope-from nwhitehorn@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n1NJVmMY033900; Mon, 23 Feb 2009 19:31:48 GMT (envelope-from nwhitehorn@svn.freebsd.org) Received: (from nwhitehorn@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n1NJVmnL033899; Mon, 23 Feb 2009 19:31:48 GMT (envelope-from nwhitehorn@svn.freebsd.org) Message-Id: <200902231931.n1NJVmnL033899@svn.freebsd.org> From: Nathan Whitehorn Date: Mon, 23 Feb 2009 19:31:48 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r188951 - head/sys/powerpc/aim X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 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, 23 Feb 2009 19:31:51 -0000 Author: nwhitehorn Date: Mon Feb 23 19:31:48 2009 New Revision: 188951 URL: http://svn.freebsd.org/changeset/base/188951 Log: Fix comment: we write the trap vector to SPRG3, not SPRG0. Modified: head/sys/powerpc/aim/trap_subr.S Modified: head/sys/powerpc/aim/trap_subr.S ============================================================================== --- head/sys/powerpc/aim/trap_subr.S Mon Feb 23 19:30:00 2009 (r188950) +++ head/sys/powerpc/aim/trap_subr.S Mon Feb 23 19:31:48 2009 (r188951) @@ -288,7 +288,7 @@ CNAME(alitrap): mflr %r28 /* save LR */ mfcr %r29 /* save CR */ - /* Put our exception vector in SPRG0 */ + /* Put our exception vector in SPRG3 */ li %r31, EXC_ALI mtsprg3 %r31 @@ -360,7 +360,7 @@ CNAME(dsisize) = .-CNAME(dsitrap) * Preamble code for DSI/ISI traps */ disitrap: - /* Write the trap vector to SPRG0 by computing LR & 0xff00 */ + /* Write the trap vector to SPRG3 by computing LR & 0xff00 */ mflr %r1 andi. %r1,%r1,0xff00 mtsprg3 %r1 @@ -533,7 +533,7 @@ CNAME(breakpoint): * Now the kdb trap catching code. */ dbtrap: - /* Write the trap vector to SPRG0 by computing LR & 0xff00 */ + /* Write the trap vector to SPRG3 by computing LR & 0xff00 */ mflr %r1 andi. %r1,%r1,0xff00 mtsprg3 %r1