From owner-svn-src-head@FreeBSD.ORG Tue Jun 9 09:47:02 2009 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AB134106568B; Tue, 9 Jun 2009 09:47:02 +0000 (UTC) (envelope-from bz@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 998F08FC28; Tue, 9 Jun 2009 09:47:02 +0000 (UTC) (envelope-from bz@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 n599l2Jc063459; Tue, 9 Jun 2009 09:47:02 GMT (envelope-from bz@svn.freebsd.org) Received: (from bz@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n599l22x063458; Tue, 9 Jun 2009 09:47:02 GMT (envelope-from bz@svn.freebsd.org) Message-Id: <200906090947.n599l22x063458@svn.freebsd.org> From: "Bjoern A. Zeeb" Date: Tue, 9 Jun 2009 09:47:02 +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: r193819 - head/sys/amd64/isa X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 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: Tue, 09 Jun 2009 09:47:03 -0000 Author: bz Date: Tue Jun 9 09:47:02 2009 New Revision: 193819 URL: http://svn.freebsd.org/changeset/base/193819 Log: Unbreak the build for amd64 after r193814 using correct variable names. Modified: head/sys/amd64/isa/clock.c Modified: head/sys/amd64/isa/clock.c ============================================================================== --- head/sys/amd64/isa/clock.c Tue Jun 9 09:03:13 2009 (r193818) +++ head/sys/amd64/isa/clock.c Tue Jun 9 09:47:02 2009 (r193819) @@ -535,7 +535,7 @@ void cpu_startprofclock(void) { - if (using_lapic_timer || !using_atrtc_clock) + if (using_lapic_timer || !using_atrtc_timer) return; atrtc_rate(RTCSA_PROF); psdiv = pscnt = psratio; @@ -545,7 +545,7 @@ void cpu_stopprofclock(void) { - if (using_lapic_timer || !using_atrtc_clock) + if (using_lapic_timer || !using_atrtc_timer) return; atrtc_rate(RTCSA_NOPROF); psdiv = pscnt = 1;