From owner-svn-src-all@FreeBSD.ORG Mon Sep 14 13:16:16 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 80191106568F; Mon, 14 Sep 2009 13:16:16 +0000 (UTC) (envelope-from n_hibma@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 61D578FC20; Mon, 14 Sep 2009 13:16:16 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n8EDGG29055572; Mon, 14 Sep 2009 13:16:16 GMT (envelope-from n_hibma@svn.freebsd.org) Received: (from n_hibma@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n8EDGGao055570; Mon, 14 Sep 2009 13:16:16 GMT (envelope-from n_hibma@svn.freebsd.org) Message-Id: <200909141316.n8EDGGao055570@svn.freebsd.org> From: Nick Hibma Date: Mon, 14 Sep 2009 13:16:16 +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: 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:16:16 -0000 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 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);