From owner-svn-src-all@FreeBSD.ORG Mon Sep 14 13:21: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 97D0A106566C; Mon, 14 Sep 2009 13:21:48 +0000 (UTC) (envelope-from rnoland@FreeBSD.org) Received: from gizmo.2hip.net (gizmo.2hip.net [64.74.207.195]) by mx1.freebsd.org (Postfix) with ESMTP id 5D03D8FC1A; Mon, 14 Sep 2009 13:21:48 +0000 (UTC) Received: from [192.168.1.4] (adsl-241-169-177.bna.bellsouth.net [74.241.169.177]) (authenticated bits=0) by gizmo.2hip.net (8.14.3/8.14.3) with ESMTP id n8EDLkkq000493 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 14 Sep 2009 09:21:46 -0400 (EDT) (envelope-from rnoland@FreeBSD.org) From: Robert Noland To: Nick Hibma In-Reply-To: <200909141316.n8EDGGao055570@svn.freebsd.org> References: <200909141316.n8EDGGao055570@svn.freebsd.org> Content-Type: text/plain Organization: FreeBSD Date: Mon, 14 Sep 2009 08:21:40 -0500 Message-Id: <1252934500.1992.1466.camel@balrog.2hip.net> Mime-Version: 1.0 X-Mailer: Evolution 2.26.3 FreeBSD GNOME Team Port Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-1.9 required=5.0 tests=AWL,BAYES_00,RCVD_IN_PBL, RDNS_DYNAMIC,SPF_SOFTFAIL autolearn=no version=3.2.5 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on gizmo.2hip.net Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org Subject: Re: svn commit: r197191 - head/sys/dev/agp 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, 14 Sep 2009 13:21:48 -0000 On Mon, 2009-09-14 at 13:16 +0000, Nick Hibma wrote: > Author: n_hibma > Date: Mon Sep 14 13:16:16 2009 > New Revision: 197191 > URL: http://svn.freebsd.org/changeset/base/197191 > > Log: > John Baldwin suggested that 'stolen memory' only happens in the case of > i810 and therefore is useful info there. Aperture size and stolen memory > are now printed on one line. > > Submitted by: jhb This is fine, thanks. robert. > Modified: > head/sys/dev/agp/agp_i810.c > > Modified: head/sys/dev/agp/agp_i810.c > ============================================================================== > --- head/sys/dev/agp/agp_i810.c Mon Sep 14 11:46:43 2009 (r197190) > +++ head/sys/dev/agp/agp_i810.c Mon Sep 14 13:16:16 2009 (r197191) > @@ -667,14 +667,12 @@ agp_i810_attach(device_t dev) > gatt->ag_physical = pgtblctl & ~1; > } > > - if (bootverbose) { > - device_printf(dev, "aperture size is %dM", > - sc->initial_aperture / 1024 / 1024); > - if (sc->stolen > 0) > - printf(", detected %dk stolen memory\n", sc->stolen * 4); > - else > - printf("\n"); > - } > + device_printf(dev, "aperture size is %dM", > + sc->initial_aperture / 1024 / 1024); > + if (sc->stolen > 0) > + printf(", detected %dk stolen memory\n", sc->stolen * 4); > + else > + printf("\n"); > > if (0) > agp_i810_dump_regs(dev); -- Robert Noland FreeBSD