summaryrefslogtreecommitdiffstats
path: root/sys/dev/agp/agp_i810.c
diff options
context:
space:
mode:
authorn_hibma <n_hibma@FreeBSD.org>2009-09-14 13:16:16 +0000
committern_hibma <n_hibma@FreeBSD.org>2009-09-14 13:16:16 +0000
commit5bade2b9a567806318a24b3fec5723d231051da5 (patch)
tree96b3b9680c63a30fef17ae4040b268c71ca30639 /sys/dev/agp/agp_i810.c
parent4f8e2e59eb258a4995fce5fb0e27c9721116d61b (diff)
downloadFreeBSD-src-5bade2b9a567806318a24b3fec5723d231051da5.zip
FreeBSD-src-5bade2b9a567806318a24b3fec5723d231051da5.tar.gz
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
Diffstat (limited to 'sys/dev/agp/agp_i810.c')
-rw-r--r--sys/dev/agp/agp_i810.c14
1 files changed, 6 insertions, 8 deletions
diff --git a/sys/dev/agp/agp_i810.c b/sys/dev/agp/agp_i810.c
index c5bf68e..a175824 100644
--- a/sys/dev/agp/agp_i810.c
+++ b/sys/dev/agp/agp_i810.c
@@ -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);
OpenPOWER on IntegriCloud